我正在尝试在单个帖子上重写永久链接的url,我的永久链接:/%postname%/我的单个表单:http://example.com/abc-def/?chapter=1
adc def平均值:%postname%
我想要permalink是:http://example.com/abc-def/chapter/1但这是不可能的。这是我的代码:
add_action( \'init\', \'myblog_rewrites_init\' );
function myblog_rewrites_init(){
add_rewrite_rule(
\'([^/]+)/([0-9]+)/?$\',
\'index.php?name=$matches[1]&chapter=$matches[2]\',
\'top\' );
}
add_filter( \'query_vars\', \'myblog_rewrite\' );
function myblog_rewrite( $query_vars ){
$query_vars[] = \'chapter\';
return $query_vars;
}
请帮帮我!谢谢大家!