WordPress无标题文章优化设置
WordPress主题站的文章一般都是有各式各样的标题来标注文章内容的,这样也利于蜘蛛抓取网站优化,但偶尔我们主题站也会写一些没有标题的文章,那这些文章并不能为网站做到很好的优化效果和蜘蛛抓取,所以今天就教大家如何设置WordPress无标题文章优化:
这里提供一个简单的方法来处理这种情况:
function filter_post_empty_title($title){
$format = get_post_format();
if($title == $post_id || $title == ”){
$time = get_the_time(‘Y-m-d H:i:s’);
$title = get_post_format_string($format).’ @ ‘.$time;
}
return $title;
}
add_filter(‘the_title’,’filter_post_empty_title’);
add_filter(‘get_the_title’,’filter_post_empty_title’);
将上面这段代码放在functions.php中,它可以帮助你在你的主题中使用the_title、get_the_title两个函数时进行一个判断,如果发现这个文章没有填写标题,就会用post_format @ post_time的形式作为标题。注意:the_title和get_the_title必须在LOOP中使用。
0条评论