我试着在Wordpress中设置一个自定义的帖子类型,一切都很好。
直到显示自定义帖子类型中的单个帖子。首先,它没有自动使用single.php
(应该如此),然后我尝试创建一个自定义single-{custom_post_type}.php
但它甚至没有使用这个:/
我现在有点困惑。
//Edit:
解决了问题。只需添加flush_rewrite_rules();
在注册后键入函数。php
register_post_type( \'communitydeals\' , $args );
flush_rewrite_rules();