WordPress 分类/标签/页面的 url 链接添加 html 后缀

 4 周前     6  

文章目录

用 WordPress 建站的朋友应该能发现,WordPress 的页面/分类 url 链接默认是没有 html 后缀的,不过有的 WordPress 主题增加了.html 后缀,不过也有的站长不喜欢要后缀,希望自己的网页地址整齐划一,所以使用的是文章 id 类型的 URL。

有没有.html 后缀是否对 wordpress seo 优化有利暂且不说,但是伪静态肯定有利于网站的 seo 的,所以对于有 html 后缀的页面,相对而言可能会有效果,大家将信将疑的用着吧。

将下面的代码根据您自己实际需要的功能添加在主题的 function.php 文件当中即可。

/* 自定义 tag、page 页面 url
/* ******************************************** */
function custom_page_rules() {
global $wp_rewrite;
/** page 页面自定义 URL 样式 **/
$wp_rewrite->page_structure = $wp_rewrite->root . 『post/%pagename%.html』;
/** tag 页面自定义 URL 样式 **/
$wp_rewrite->extra_permastructs[『post_tag』][『with_front』] = 」;
$wp_rewrite->extra_permastructs[『post_tag』][『struct』] = $wp_rewrite->extra_permastructs[『post_tag』][『with_front』] . 『tag/%post_tag%.html』;
}
add_action( 『init』, 『custom_page_rules』 );

这样就完成了分类/标签/页面的 url 链接添加 html 后缀,你是不是已经完成了呢?

版权声明:野路子 发表于 4 周前,共 757 字。
转载请注明:WordPress 分类/标签/页面的 url 链接添加 html 后缀 | 野路子

您可能感兴趣的

暂无评论

暂无评论...