我在wordpress中创建了一个新的帖子类型。新的职位类型称为工作。
我想在用户单击“详细信息按钮”时自定义链接。链接是work/post_id/postname
我无法将链接连接到详细信息页面。调用“详细信息”页single-work.php
在我的functions.php
我写这些规则:
add_action( \'init\', \'wpse26388_rewrites_init\' );
function wpse26388_rewrites_init(){
add_rewrite_rule( "work/([0-9]+)/([0-9]+)?$", "single-work.php", \'top\' );
}
但有一个问题,因为当用户单击链接时,他会看到
index.php
而不是
single-work.php
. 我怎样才能解决这个问题?