秋硕学习笔记 教程 给WordPress分类目录、标签、页面的url链接添加.html后缀

给WordPress分类目录、标签、页面的url链接添加.html后缀

将下面的代码添加至当前使用的WordPress主题的functions.php中即可。 function xi…

将下面的代码添加至当前使用的WordPress主题的functions.php中即可。

function xintheme_custom_page_rules() {

global $wp_rewrite;

$wp_rewrite->page_structure = $wp_rewrite->root . 'page/%pagename%.html';

$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';

$wp_rewrite->extra_permastructs['category']['with_front'] = 'category';
$wp_rewrite->extra_permastructs['category']['struct'] = $wp_rewrite->extra_permastructs['category']['with_front'].'/%category%.html';

}
 
add_action( 'init', 'xintheme_custom_page_rules' );

添加代码后,到WordPress后台》设置》固定连接,重新保存一下设置。

注意:此功能不可与【去除固定连接中的「category」标志开关】同时使用。

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。若本站内容侵犯了原著者的合法权益,请联系我们进行处理。本文地址:https://wparticle.cn/439.html

作者: wordus

记录生活感悟,分享网络资源,交流学习体会,感受美好人生。秋硕学习笔记,记录分享学习、生活、工作、旅游、健身、爱好的个人博客。

发表回复

您的电子邮箱地址不会被公开。 必填项已用 * 标注

返回顶部