欢迎访问服务器技术网-www.fuwuqijishu.com

WordPress设置分类和页面尾巴带有.HTML后缀方法

网站建设 fuwuqijishu 2年前 (2022-09-04) 32次浏览 0个评论 扫描二维码

我们使用过WordPress的朋友肯定是知道的,我们创建的分类目录和页面,都是直接目录名称结尾的,不像页面我们可以设置.HTML或者其他后缀的尾巴。但是,类似在ZBLOG、Typecho等程序好像是可以设置分类和页面的尾巴的,如果是WP如何设置呢?

WordPress设置分类和页面尾巴带有.HTML后缀方法

肯定是有办法的,因为WordPress有万能的插件库。

第一、插件方法

我们看到有些网友有提到是使用插件的。比如可以分别使用 html-in-category-and-pages 和 .html on PAGES 插件来解决这个问题,但是看到目前这两个插件已经过期多年,甚至前者已经被删除。所以,暂时不考虑用插件的办法。

第二、代码方法

这里我们可以使用代码办法。

// 设置分类,页面,TAG HTML结尾 Edit By itbulu.com
function 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', 'custom_page_rules' );

我们可以将代码添加到 Functions.php 页面中启动功能。

喜欢 (0)
发表我的评论
取消评论
表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址

Warning: error_log(/www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/#log/log-2214.txt): failed to open stream: No such file or directory in /www/wwwroot/fuwiqijishu/wp-content/plugins/spider-analyser/spider.class.php on line 2900