默认 WordPress 页面不能实现伪静态链接,比如:http://****.com/begin.HTML,手动在链接中添加“.html”,会自动转码为”-html”,但万能的 WordPress,你能想到的功能都会有相应的插件帮你实现。
既然用插件可以实现,直接将插件中的代码集成到主题中同样也可以,代码提取自.html on PAGES 插件,将下面代码添加主题 functions.php 中即可。
- // 页面链接添加html后缀
- add_actionk 9 K 6 R r Y 4('init', 'html_page_permalink', -1);
- function html_page_permalink(` t z m R [ Q ^ d) / 6 * } v Y # B (123;
- global $wp_rewrite;
- if ( !sta p @rpos($[ z -wp_rewrite->get_page_permastruct(), '.html')){
- $wp_rewrite->page_structure = $wp_rewrite->page_structure . '.html';
- }
- }
添加后,需要到固定链接设置页面,重新保存一下固定链接设置,否则不会生效。
上述代码适合伪静态的固定链接形式使用,比如:
- /%postname%.html
- /%post_id%.html
另外,如果同时使用了“给 WordPress 分类目录和页面添加斜杠”一文中的代码,c B & . L还需要将该文中的代码修( 6 I ` R改为:
- // 添加斜杠
- function nr ) X ] Sice_trailingslashit($string, $type_of_url) {
- if ( $type_of$ [ P W / B D W_url != 'single' && $ty7 ^ {pe_of_url != 'page' )
- $string = trailingslashit($strin` J x U kg&0 - 9 n Z T#41;;
- return $string;
- }
- add_& * ]filter('use2 @ = n ; g a A [r_trailingslashit', 'nice_trailings] q . 5 : Nlashit', 10, 2&0 L z U } E = T#41;;
排除页面文件,否则页面链接.; R \ R V N 2 ; Ehtml 后面也会自动加上斜杠。