WordPress自定义主题模板常用函数
搞懂下面的一些基本Tag和PHP代码对你修改WordPress起到很大的帮助,建议大家可以备份一下这篇文章,往后有需要用上可以拿来参考一下。当然,如果你是HTML老手,DVI+CSS高手,PHP圣手的话,就没有这个必要咯!
php乱码解决:
页面编码:<?php header("Content-Type: text/html; charset=utf-8");
静态代码:<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
写代码的文本设置为:utf-8
WordPress主题模板
精智WordPress主题 http://demo.jianzhanpress.com/
使用例子:
WordPress最新文章的调用可以使用一行很简单的模板标签wp_get_archvies来实现. 代码如下:
<?php get_archives(‘postbypost’, 10); ?> (显示10篇最新更新文章)
或者
<?php wp_get_archives(‘type=postbypost&limit=20&format=custom’); ?>
后面这个代码显示你博客中最新的20篇文章,其中format=custom这里主要用来自定义这份文章列表的显示样式。具体的参数和使用方法你可 以参考官方的使用说明- wp_get_archvies。(fromat=custom也可以不要,默认以UL列表显示文章标题。)
补充: 通过WP的query_posts()函数也能调用最新文章列表, 虽然代码会比较多一点,但可以更好的控制Loop的显示,比如你可以设置是否显示摘要。具体的使用方法也可以查看官方的说明。
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; ?>
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;?>
wordpress调用相关文章
<?php
$tags = wp_get_post_tags($post->ID);
if ($tags) {
$first_tag = $tags[0]->term_id;
$args=array(
‘tag__in’ => array($first_tag),
‘post__not_in’ => array($post->ID),
‘showposts’=>10,
‘caller_get_posts’=>1
);
$my_query = new WP_Query($args);
if( $my_query->have_posts() ) {
while ($my_query->have_posts()) : $my_query->the_post(); ?>
<li><a href=”<?php the_permalink() ?>” rel=”bookmark” title=”<?php the_title_attribute(); ?>”><?php the_title();?> <?php comments_number(‘ ‘,’(1)’,'(%)’); ?></a></li>
<?php
endwhile;
}
}
wp_reset_query();
?>
WordPress主题 – 基本模板文件
一套完整的WordPress主题应至少具有如下模板文件
style.css # CSS(样式表)文件
index.php # 主页模板
archive.php # Archive/Category模板
404.php # Not Found 错误页模板
comments.php # 留言/回复模板
footer.php # Footer模板
header.php # Header模板
sidebar.php # 侧栏模板
page.php # 内容页(Page)模板
single.php # 内容页(Post)模板
searchform.php # 搜索表单模板
search.php # 搜索结果模板
当然,特指某个WordPress主题(现在的英文主题已经发展到了更加多元化的主题元素),可能不止这些文件,但一般而言,这些文件是每个WordPress主题基本必备的。
WordPress主题 – Header 常用PHP函数
<?php bloginfo(‘name’); ?> # 博客名称(Title)
<?php bloginfo(‘stylesheet_url’); ?> # CSS文件路径
<?php bloginfo(‘pingback_url’); ?> # PingBack Url
<?php bloginfo(‘template_url’); ?> # 模板文件路径
<?php bloginfo(‘version’); ?> # WordPress版本
<?php bloginfo(‘atom_url’); ?> # Atom Url
<?php bloginfo(‘rss2_url’); ?> # RSS 2.o Url
<?php bloginfo(‘url’); ?> # 博客 Url
<?php bloginfo(‘html_type’); ?> # 博客网页Html类型
<?php bloginfo(‘charset’); ?> # 博客网页编码
<?php bloginfo(‘description’); ?> # 博客描述
<?php wp_title(); ?> # 特定内容页(Post/Page)的标题
WordPress主题 – 判断Tag
is_home() # 是否为主页
is_single() # 是否为内容页(Post)
is_single(’2′) # 判断是否是具体文章(id=2)的页面
is_single(’beef-stew’) #判断是否是具体文章(标题判断)的页面
is_page() # 是否为内容页(Page)
is_page(’42′) # id判断,即是否是id为42的页面
is_page(’About Me’) # 判断标题是否是about me页面
is_category() # 是否为Category/Archive页
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_tag() # 是否为Tag存档页
下面是通过不同的判断实现以年、月、日、时间等方式来显示归档
is_date() # 是否为指定日期存档页
is_year() # 是否为指定年份存档页
is_month() # 是否为指定月份存档页
is_day() # 是否为指定日存档页
is_time() # 是否为指定时间存档页
is_archive() # 是否为存档页
is_search() # 是否为搜索结果页
is_404() # 是否为 “HTTP 404# Not Found” 错误页
is_paged() # 主页/Category/Archive页是否以多页显示
comments_open() #是否留言开启
pings_open() #是否开启ping
上面的判断Tag在WordPress主题里常常应用于侧边栏(sidebay)模板文件,就比如 is_home() ,例如你放了一段广告代码在侧边栏上,而又只想在主页上显示这个广告,那么就可以用到这个判断Tag了
WordPress主题 – 主体body模板常用的PHP函数
<?php get_header(); ?> # 调用Header模板
<?php get_sidebar(); ?> # 调用Sidebar模板
<?php get_footer(); ?> # 调用Footer模板
<?php the_content(); ?> # 显示内容(Post/Page)
<?php if(have_posts()) ” ?> # 检查是否存在Post/Page
<?php while(have_posts()) ” the_post(); ?> # 如果存在Post/Page则予以显示
<?php endwhile; ?> # While 结束
<?php endif; ?> # If 结束
<?php the_time(‘字符串’) ?> # 显示时间,时间格式由“字符串”参数决定,具体参考PHP手册
<?php comments_popup_link(); ?> # 正文中的留言链接。如果使用 comments_popup_script() ,则留言会在新窗口中打开,反之,则在当前窗口打开
<?php the_title(); ?> # 内容页(Post/Page)标题
<?php the_permalink() ?> # 内容页(Post/Page) Url
<?php the_category(‘, ‘) ?> # 特定内容页(Post/Page)所属Category
<?php the_author(); ?> # 作者
<?php the_ID(); ?> # 特定内容页(Post/Page) ID
<?php edit_post_link(); ?> # 如果用户已登录并具有权限,显示编辑链接
<?php get_links_list(); ?> # 显示Blogroll中的链接
<?php comments_template(); ?> # 调用留言/回复模板
<?php wp_list_pages(); ?> # 显示Page列表
<?php wp_list_categories(); ?> # 显示Categories列表
<?php next_post_link(‘ %link ‘); ?> # 下一篇文章链接
<?php previous_post_link(‘%link’); ?> # 上一篇文章链接
<?php get_calendar(); ?> # 日历
<?php wp_get_archives() ?> # 显示内容存档
<?php posts_nav_link(); ?> # 导航,显示上一篇/下一篇文章链接
<?php include(TEMPLATEPATH . ‘/文件名’); ?> # 嵌入其他文件,可为定制的模板或其他类型文件
WordPress主题 – 与模板相关的其他函数
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(); ?># 网页加载查询量
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; ?>
wordpress去评论者链接的评论输出
<?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,14) 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;?>
wordpress调用含gravatar头像的评论输出
代码把comment_author的值改成你的ID,18是头像大小,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_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″;
$comments = $wpdb->get_results($sql);
$output = $pre_HTML;
foreach ($comments as $comment) {
$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>”;
}
$output .= $post_HTML;
$output = convert_smilies($output);
echo $output;
?>
wordpress调用网站统计大全
文章总数
<?php $count_posts = wp_count_posts(); echo $published_posts = $count_posts->publish;?>
草稿数目
<?php $count_posts = wp_count_posts(); echo $draft_posts = $count_posts->draft; ?>
评论总数
<?php echo $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->comments”);?>
成立时间
<?php echo floor((time()-strtotime(“2008-8-18″))/86400); ?>
标签总数
<?php echo $count_tags = wp_count_terms(‘post_tag’); ?>
页面总数
<?php $count_pages = wp_count_posts(‘page’); echo $page_posts = $count_pages->publish; ?>
分类总数
<?php echo $count_categories = wp_count_terms(‘category’); ?>
链接总数
<?php $link = $wpdb->get_var(“SELECT COUNT(*) FROM $wpdb->links WHERE link_visible = ‘Y’”); echo $link; ?>
用户总数
<?php $users = $wpdb->get_var(“SELECT COUNT(ID) FROM $wpdb->users”); echo $users; ?>
最后更新
<?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; ?>
WordPress翻页
判断是否翻页,比如你当前的blog是http://domain.com 显示http://domain.com?paged=2的时候,这个判断将返 回真,通过这个函数可以配合is_home来控制某些只能在首页显示的界面,
例如:
<?php if(is_single()):?>
//这里写你想显示的内容,包括函数
<?php endif;?>
或者
<?php if(is_home() && !is_paged() ):?>
//这里写你想显示的内容,包括函数
<?php endif;?>
wordpress 非插件调用评论表情
<!–smilies–>
<?php
function wp_smilies() {
global $wpsmiliestrans;
if ( !get_option(‘use_smilies’) or (empty($wpsmiliestrans))) return;
$smilies = array_unique($wpsmiliestrans);
$link=”;
foreach ($smilies as $key => $smile) {
$file = get_bloginfo(‘wpurl’).’/wp-includes/images/smilies/’.$smile;
$value = ” “.$key.” “;
$img = “<img src=\”{$file}\” alt=\”{$smile}\” />”;
$imglink = htmlspecialchars($img);
$link .= “<a href=\”#commentform\” title=\”{$smile}\” onclick=\”document.getElementById(‘comment’).value += ‘{$value}’\”>{$img}</a> ”;
}
echo ‘<div>’.$link.’</div>’;
}
?>
<?php wp_smilies();?>
<!–smilies—>