我们在 wordpress 主题开发和使用过程中,经常为了 SEO 优化,会设置主题链接的伪静态,设置方法很简单,大家也都知道,就是通过后台设置-固定连接来设置就可以了。但是可能很多朋友也发现了,设置好伪静态后,文章页都实现了伪静态,但是页面依然没有。其实如果让页面也支持伪静态也是很简单的,只需要在你的 functions.php 文件中加入以下代码就可以了。
//页面链接添加html后缀
function 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’,’html_page_permalink’,-1);