首页 网站建设 Wordpress 浏览内容
WordPress自定义页面链接添加html后缀
WordPress自定义页面链接默认是不带.html 后缀的
如果小伙伴们想让页面也像文章页面一样拥有后缀,那么这个方法可以帮你实现。
将代码添加到主题的 functions.php 即可:
/*** WordPress自定义页面链接添加html后缀* http://www.moyoo.net/12527.html*/function ivicos_html_page_permalink() { global $wp_rewrite; if ( !strpos($wp_rewrite->get_page_permastruct(), '.html')) { $wp_rewrite->page_structure = $wp_rewrite->page_structure . '.html'; }}add_action('init', 'ivicos_html_page_permalink', -1);
添加后,需要到固定链接设置页面,重新保存一下固定链接设置,否则不会生效。
本文代码适合伪静态的固定链接形式使用,比如:/%postname%.html 和 /%post_id%.html。
不错哦~