我们在编辑网站的时候,是不是希望如果我们给这篇文章设置置顶和最新文章的时候区别和其他文章的不同,这样可以引起用户的注意和点击率。告诉用户这篇文章是新更新的且置顶推荐的,那麦子看到有部分的网友是将置顶和新文章在文章标题后面加上NEW和TOP图标,这里我们需要先准备图标图片。
1、添加最新文章图标
//最新文章添加图标 function add_title_icon($title) { global $post; $post_date=$post->post_date; $current_time=current_time('timestamp'); $diff=($current_time-strtotime($post_date))/3600; $title_icon_new=get_bloginfo('template_directory').'/images/new.gif'; if($diff<24) { $title='<img src="'.$title_icon_new.'" />'.$title; } return $title; } add_filter('the_title','add_title_icon',999);
2、置顶文章图标
//置顶文章图标 function add_top_title_icon($title) { global $post; $title_icon_top=get_bloginfo('template_directory').'/images/top.gif'; $sticky = get_option('sticky_posts'); if($sticky) { $title=in_array($post->ID,$sticky)?'<img src="'.$title_icon_top.'" />'.$title:$title; } return $title; } add_filter('the_title','add_top_title_icon',999);
这里我们将代码添加到当前主题 Functions.php 文件中。当然,我们需要准备2个小图标,分别是new.gif 和 top.gif,且放到对应的主题目录中。
评论