wordpress 代码调用办法与技巧集锦

WordPress模板根本文件


style.css 款式表文件
index.php 主页文件
single.php 日志单页文件
page.php 页面文件
archvie.php 分类和日期存档页文件
searchform.php 搜寻表单文件
search.php 搜寻页面文件
comments.php 留言区域文件(包括留言列表和留言框)
404.php 404谬误页面
header.php 网页头部文件
sidebar.php 网页侧边栏文件
footer.php 网页底部文件
WordPress Header头部 PHP代码

注: 也就是位于<head>和</head>之间的PHP代码


<?php bloginfo(’name’); ?> 网站题目
<?php wp_title(); ?> 日志或页面题目
<?php bloginfo(’stylesheet_url’); ?> WordPress主题款式表文件style.css的**地址
<?php bloginfo(’pingback_url’); ?> WordPress博客的Pingback地址
<?php bloginfo(’template_url’); ?> WordPress主题文件的**地址
<?php bloginfo(’version’); ?> 博客的Wordpress版本
<?php bloginfo(’atom_url’); ?> WordPress博客的Atom地址
<?php bloginfo(’rss2_url’); ?> WordPress博客的RSS2地址
<?php bloginfo(’url’); ?> WordPress博客的相对地址
<?php bloginfo(’name’); ?> WordPress博客的称号
<?php bloginfo(’html_type’); ?> 网站的HTML版本
<?php bloginfo(’charset’); ?> 网站的字符编码格局

WordPress 主体模板 PHP代码


<?php the_content(); ?> 日志内容
<?php if(have_posts()) : ?> 确认能否有日志
<?php while(have_posts()) : the_post(); ?> 假如有,则显示全副日志
<?php endwhile; ?> 完结PHP函数”while”
<?php endif; ?> 完结PHP函数”if”
<?php get_header(); ?> header.php文件的内容
<?php get_sidebar(); ?> sidebar.php文件的内容
<?php get_footer(); ?> footer.php文件的内容
<?php the_time(’m-d-y’) ?> 显示格局为”02-19-08″的日期
<?php comments_popup_link(); ?> 显示一篇日志的留言链接
<?php the_title(); ?> 显示一篇日志或页面的题目
<?php the_permalink() ?> 显示一篇日志或页面的永世链接/URL地址
<?php the_category(’, ‘) ?> 显示一篇日志或页面的所属分类
<?php the_author(); ?> 显示一篇日志或页面的作者
<?php the_ID(); ?> 显示一篇日志或页面的ID
<?php edit_post_link(); ?> 显示一篇日志或页面的编辑链接
<?php get_links_list(); ?> 显示Blogroll中的链接
<?php comments_template(); ?> comments.php文件的内容
<?php wp_list_pages(); ?> 显示一份博客的页面列表
<?php wp_list_cats(); ?> 显示一份博客的分类列表
<?php next_post_link(’ %link ‘) ?> 下一篇日志的URL地址
<?php previous_post_link(’%link’) ?> 上一篇日志的URL地址
<?php get_calendar(); ?> 调用日历
<?php wp_get_archives() ?> 显示一份博客的日期存档列表
<?php posts_nav_link(); ?> 显示较新日志链接(上一页)和较旧日志链接(下一页)
<?php bloginfo(’description’); ?> 显示博客的形容信息

其它的一些Wordpress模板代码


/%postname%/ 显示博客的自定义永世链接
<?php the_search_query(); ?> 搜寻表单的值
<?php _e(’Message’); ?> 打印输入信息
<?php wp_register(); ?> 显示注册链接
<?php wp_loginout(); ?> 显示登入/登出链接
<!–next page–> 在日志或页面中拔出分页
<!–more–> 截断日志
<?php wp_meta(); ?> 显示治理员的相干管制信息
<?php timer_stop(1); ?> 显示载入页面的工夫
<?php echo get_num_queries(); ?> 显示载入页面查问

1. wordpress调用**文章 Wordpress**文章的调用能够应用一行很简略的模板标签wp_get_archvies来完成. 代码如下:


<?php get_archives('postbypost', 10); ?>
(显示10篇**更新文章) 或许</p> <p><?php wp_get_archives(‘type=postbypost&limit=20&format=custom’); ?>

前面这个代码显示你博客中**的20篇文章,其中format=custom这里次要用来自定义这份文章列表的显示款式。详细的参数和应用办法你可 以参考民间的应用阐明- wp_get_archvies。(fromat=custom也能够不要,默许以UL列表显示文章题目。)

补充: 经过WP的query_posts()函数也能调用**文章列表, 尽管代码会比拟多一点,但能够更好的管制Loop的显示,比方你能够设置能否显示摘要。详细的应用办法也能够查看民间的阐明。

2. wordpress调用随机文章


<?php
$rand_posts = get_posts('numberposts=10&orderby=rand');
foreach( $rand_posts as $post ) :
?>
<!--上面是你想自定义的Loop-->
<li><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></li>
<?php endforeach; ?>

3. wordpress调用**留言 上面是我之前在一个Wordpress主题中代到的**留言代码,详细也记不得是哪个主题了。该代码间接调用数据库显示一份**留言。其中 LIMIT 10限度留言显示数量。绿色部份则是每条留言的输入款式。


<?php
global $wpdb;
$sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID,
comment_post_ID, comment_author, comment_date_gmt, comment_approved,
comment_type,comment_author_url,
SUBSTRING(comment_content,1,30) AS com_excerpt
FROM $wpdb->comments
LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =
$wpdb->posts.ID)
WHERE comment_approved = '1' AND comment_type = '' AND
post_password = ''
ORDER BY comment_date_gmt DESC
LIMIT 10";
$comments = $wpdb->get_results($sql);
$output = $pre_HTML; foreach ($comments as $comment) {
$output .= "n<li>".strip_tags($comment->comment_author)
.":" . " <a href="" . get_permalink($comment->ID) .
"#comment-" . $comment->comment_ID . "" title="on " .
$comment->post_title . "">" . strip_tags($comment->com_excerpt)
."</a></li>";
} $output .= $post_HTML;
echo $output;?>

4.wordpress调用相干文章

在文章页显示相干文章


<?php</p> <p>$tags = wp_get_post_tags($post->ID);</p> <p>if ($tags) {</p> <p>$first_tag = $tags[0]->term_id;</p> <p>$args=array(</p> <p>'tag__in' => array($first_tag),</p> <p>'post__not_in' => array($post->ID),</p> <p>'showposts'=>10,</p> <p>'caller_get_posts'=>1</p> <p>);</p> <p>$my_query = new WP_Query($args);</p> <p>if( $my_query->have_posts() ) {</p> <p>while ($my_query->have_posts()) : $my_query->the_post(); ?></p> <p><li><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title();?> <?php comments_number(' ','(1)','(%)'); ?></a></li></p> <p><?php</p> <p>endwhile;</p> <p>}</p> <p>}</p> <p>wp_reset_query();</p> <p>?>

5.wordpress调用指定分类的文章


<?php $posts = get_posts( "category=4&numberposts=10" ); ?>
<?php if( $posts ) : ?>
<ul><?php foreach( $posts as $post ) : setup_postdata( $post ); ?>
<li>
<a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><?php the_title(); ?></a>
</li>
<?php endforeach; ?>
</ul>
<?php endif; ?>

6.wordpress去评论者链接的评论输入


<?php</p> <p>global $wpdb;</p> <p>$sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID,</p> <p>comment_post_ID, comment_author, comment_date_gmt, comment_approved,</p> <p>comment_type,comment_author_url,</p> <p>SUBSTRING(comment_content,1,14) AS com_excerpt</p> <p>FROM $wpdb->comments</p> <p>LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID =</p> <p>$wpdb->posts.ID)</p> <p>WHERE comment_approved = '1' AND comment_type = '' AND</p> <p>post_password = ''</p> <p>ORDER BY comment_date_gmt DESC</p> <p>LIMIT 10";</p> <p>$comments = $wpdb->get_results($sql);</p> <p>$output = $pre_HTML;</p> <p>foreach ($comments as $comment) {</p> <p>$output .= "\n<li>".strip_tags($comment->comment_author)</p> <p>.":" . " <a href=\"" . get_permalink($comment->ID) .</p> <p>"#comment-" . $comment->comment_ID . "\" title=\"on " .</p> <p>$comment->post_title . "\">" . strip_tags($comment->com_excerpt)</p> <p>."</a></li>";</p> <p>}</p> <p>$output .= $post_HTML;</p> <p>echo $output;?>

7.wordpress调用含gravatar头像的评论输入


<?php</p> <p>global $wpdb;</p> <p>$sql = "SELECT DISTINCT ID, post_title, post_password, comment_ID, comment_post_ID, comment_author, comment_date_gmt, comment_approved,comment_author_email, comment_type,comment_author_url, SUBSTRING(comment_content,1,10) AS com_excerpt FROM $wpdb->comments LEFT OUTER JOIN $wpdb->posts ON ($wpdb->comments.comment_post_ID = $wpdb->posts.ID) WHERE comment_approved = '1' AND comment_type = '' AND comment_author != '郑 永' AND post_password = '' ORDER BY comment_date_gmt DESC LIMIT 10";</p> <p>$comments = $wpdb->get_results($sql);</p> <p>$output = $pre_HTML;</p> <p>foreach ($comments as $comment) {</p> <p>$output .= "\n<li>".get_avatar(get_comment_author_email('comment_author_email'), 18). " <a href=\"" . get_permalink($comment->ID) . "#comment-" . $comment->comment_ID . "\" title=\"" . $comment->post_title . " 上的评论\">". strip_tags($comment->comment_author) .": ". strip_tags($comment->com_excerpt) ."</a></li>";</p> <p>}</p> <p>$output .= $post_HTML;</p> <p>$output = convert_smilies($output);</p> <p>echo $output;</p> <p>?>

下面代码把comment_author的值改成你的ID,18是头像大小,10是评论数量。

8.wordpress调用网站统计大全


1、日志总数:</p> <p><?php $count_posts = wp_count_posts(); echo $published_posts = $count_posts->publish;?>
2、草稿数目:</p> <p><?php $count_posts = wp_count_posts(); echo $draft_posts = $count_posts->draft; ?>
3、评论总数:</p> <p><?php echo $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->comments");?>
4、成立工夫:</p> <p><?php echo floor((time()-strtotime("2008-8-18"))/86400); ?>
5、标签总数:</p> <p><?php echo $count_tags = wp_count_terms('post_tag'); ?>
6、页面总数:</p> <p><?php $count_pages = wp_count_posts('page'); echo $page_posts = $count_pages->publish; ?>
7、分类总数:</p> <p><?php echo $count_categories = wp_count_terms('category'); ?>
8、链接总数:</p> <p><?php $link = $wpdb->get_var("SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = 'Y'"); echo $link; ?>
9、用户总数:</p> <p><?php $users = $wpdb->get_var("SELECT COUNT(ID) FROM $wpdb->users"); echo $users; ?>
10、最初更新:</p> <p><?php $last = $wpdb->get_results("SELECT MAX(post_modified) AS MAX_m FROM $wpdb->posts WHERE (post_type = 'post' OR post_type = 'page') AND (post_status = 'publish' OR post_status = 'private')");$last = date('Y-n-j', strtotime($last[0]->MAX_m));echo $last; ?>

9.wordpress判别语句

is_single()
判别能否是详细文章的页面
is_single(’2′)
判别能否是详细文章(id=2)的页面
is_single(’Beef Stew’)
判别能否是详细文章(题目判别)的页面
is_single(’beef-stew’)
判别能否是详细文章(slug判别)的页面
comments_open()
能否留言开启
pings_open()
能否开启ping
is_page()
能否是页面
is_page(’42′)
id判别,即能否是id为42的页面
is_page(’About Me’)
判别题目
is_page(’about-me’)
slug判别
is_category()
能否是分类
is_category(’6′)
id判别,即能否是id为6的分类
is_category(’Cheeses’)
分类title判别
is_category(’cheeses’)
分类 slug判别
in_category(’5′)
判别以后的文章能否属于分类5
is_author()
将一切的作者的页面显示进去
is_author(’1337′)
显示author number为1337的页面
is_author(’Elite Hacker’)
经过昵称来显示以后作者的页面
is_author(’elite-hacker’)
上面是经过不同的判别完成以年、月、日、工夫等形式来显示归档
is_date()
is_year()
is_month()
is_day()
is_time()
判别以后能否是归档页面
is_archive()
判别能否是搜寻
is_search()
判别页面能否404
is_404()
判别能否翻页,比方你以后的blog是http://domain.com 显示http://domain.com?paged=2的时分,这个判别将返 回真,经过这个函数能够配合is_home来管制某些只能在首页显示的界面,
例如:


<?php if(is_single()):?></p> <p>//这里写你想显示的内容,包括函数</p> <p><?php endif;?>
或许:
<?php if(is_home() && !is_paged() ):?></p> <p>//这里写你想显示的内容,包括函数</p> <p><?php endif;?>

10.wordpress非插件同步twitter


<?php</p> <p>require_once (ABSPATH . WPINC . ‘/class-feed.php’);</p> <p>$feed = new SimplePie();</p> <p>$feed->set_feed_url(‘http://feeds.feedburner.com/agting′);</p> <p>$feed->set_file_class(‘WP_SimplePie_File’);</p> <p>$feed->set_cache_duration(600);</p> <p>$feed->init();</p> <p>$feed->handle_content_type();</p> <p>$items = $feed->get_items(0,1);</p> <p>foreach($items as $item) {</p> <p>echo ‘<a target=”_blank” rel=”external nofollow” title=”Follow Me on Twitter” href=”http://twitter.com/agting″>@郑永</a>: ‘.$item->get_description();</p> <p>}</p> <p>?>

代码中的agting改成你的twitter用户名,郑永改成你的名字。 另一种调用办法需求你的空间是国外主机:


<?php</p> <p>// Your twitter username.</p> <p>$username = "wange1228";</p> <p>// Prefix - some text you want displayed before your latest tweet.</p> <p>// (HTML is OK, but be sure to escape quotes with backslashes: for example href=\"link.html\")</p> <p>// Suffix - some text you want display after your latest tweet. (Same rules as the prefix.)</p> <p>$suffix = "";</p> <p>$feed = "<a href="http://search.twitter.com/search.atom?q=from" rel="external nofollow" >http://search.twitter.com/search.atom?q=from</a>:" . $username . "&rpp=1";</p> <p>function parse_feed($feed) {</p> <p>$stepOne = explode("<content type=\"html\">", $feed);</p> <p>$stepTwo = explode("</content>", $stepOne[1]);</p> <p>$tweet = $stepTwo[0];</p> <p>$tweet = str_replace("<", "<", $tweet);</p> <p>$tweet = str_replace(">", ">", $tweet);</p> <p>return $tweet;</p> <p>}</p> <p>$twitterFeed = file_get_contents($feed);</p> <p>echo stripslashes($prefix) . parse_feed($twitterFeed) . stripslashes($suffix);</p> <p>?>

ZeroZ 总结了一下这个办法的特点:

1、非插件!

2、不必验证用户名和明码,也就是说你能够指定调用任何一集体的 tweet!

3、能够自定义 tweet 信息后显示的文字,就是 $suffix = “”; 这里!

4、只能调用**的一条 tweet,刚好满足我的需要。

5、大略只有国外空间能力应用!(经我验证,的确如此)

11.wordpress 非插件调用评论表情


<!--smilies-->
<?php</p> <p>function wp_smilies() {</p> <p>global $wpsmiliestrans;</p> <p>if ( !get_option('use_smilies') or (empty($wpsmiliestrans))) return;</p> <p>$smilies = array_unique($wpsmiliestrans);</p> <p>$link='';</p> <p>foreach ($smilies as $key => $smile) {</p> <p>$file = get_bloginfo('wpurl').'/wp-includes/images/smilies/'.$smile;</p> <p>$value = " ".$key." ";</p> <p>$img = "<img src=\"{$file}\" alt=\"{$smile}\" />";</p> <p>$imglink = htmlspecialchars($img);</p> <p>$link .= "<a href=\"#commentform\" title=\"{$smile}\" onclick=\"document.getElementByIdx_x('comment').value += '{$value}'\">{$img}</a> ";</p> <p>}</p> <p>echo '<p>'.$link.'</p>';</p> <p>}</p> <p>?></p> <p><?php wp_smilies();?></p> <p><!--smilies—>

将以上代码复制到 comments.php 中合适的地位。

以上就是安达网络工作室关于《wordpress 代码调用方法与技巧集锦》的一些看法。更多内容请查看本栏目更多内容!

本文相关话题: wordpress 代码调用
版权声明:本文为 安达网络工作室 转载文章,如有侵权请联系我们及时删除。
相关文章
简略理解将WordPress中的工具栏移到底部的小技巧

从 WordPress 3.1 开端引入了工具栏的概念,当用户登录后在前台和后盾的页面顶部会显示一个黑色的工具栏,经...

wordpress中弱小的调用文章函数query posts 用法

query posts是一个十分好用的调用文章函数,能够做到同页面内显示多种特定范畴的文章,例如能够调用某分类、...

Wordpress php 分页代码

成果: 将上面的函数放到你的主题的 functions.php 文件中: 代码如下: function theme_echo_pagenavi(){ gl...

容许 WordPress 上传恣意文件的办法

此时假如上传一个不在预约义的平安扩大名列表,如.lrc,会报错: File type does not meet security guidel...

Wordpress完成单篇文章分页显示的办法

本文实例讲述了Wordpress完成单篇文章分页显示的办法。分享给大家供大家参考。详细剖析如下: 很多冤家都晓...

在WordPress中应用wp_count_posts函数来统计文章数量

做一个全站统计是不是很酷?短暂的博客越来越少,何不给本人的一个统计,看看本人在这个博客上致力了多少,...

需求提交

客服服务