WordPress斜杠在文章分类目录等的作用
WordPress网站文章分类目录和页面如果想要更好吸取搜索引擎的爬行抓取,可以试着用斜杠 / 添加法,这样会给伪静态下的主题网站在搜索抓取上更加友好,下面我们就来具体了解一下:
我们只需要把以下代码加在主题目录的 functions.php 中即可:
function nice_trailingslashit($string, $type_of_url) {
if ( $type_of_url != 'single' && $type_of_url != 'page' && $type_of_url != 'single_paged' )
$string = trailingslashit($string);
return $string;
}
add_filter('user_trailingslashit', 'nice_trailingslashit', 10, 2);
0条评论