Custom Post Type Rewrite Rule

时间:2013-12-10 作者:JoaMika

我的主题使用以下代码:

\'rewrite\' => array(\'slug\' => $this->safe_name . \'-detail\'),
产生此段塞:

http://www.example.com/estate-detail/4-bedroom-property-for-sale/
我需要去掉“遗产细节”部分,所以我将规则改为:

\'rewrite\' => array(\'slug\' => \' \'),
这将产生以下段塞:

http://www.example.com//4-bedroom-property-for-sale/
我如何摆脱双正斜杠?

1 个回复
最合适的回答,由SO网友:Shazzad 整理而成
add_filter( \'post_type_link\', \'filterslash_post_type_link\', 11, 2);

function filterslash_post_type_link( $post_link, $post ){
    $post_link = home_url("/$post->post_name/");
    return $post_link;
}
结束