我正在尝试在wordpress上添加自定义固定链接
到目前为止我试过了
function my_pagenum_link( $link ) {
$link = preg_replace( '~/news-(\d+)/?~', '', $link );
return preg_replace( '~/page/(\d+)/?~', '/news-\1', $link );
}
add_filter( 'get_pagenum_link', 'my_pagenum_link' );
它给了我想要的链接:
http://exmaple.com/category/news-2
但是当我打开链接时,它会重定向到:
http://exmaple.com/category/news-2/page/2
请建议我如何阻止wordpress重定向
答案 0 :(得分:0)
我已经通过添加
完成了{{1}}