我创建了一个定义了分类法的自定义帖子类型,但在显示归档页面时遇到了问题。
我找不到404页。个人帖子显示在归档页面上,但什么也没有显示函数php。
function create_post_type() {
register_post_type( \'my_properties\',
array(
\'labels\' => array(
\'name\' => __( \'Commercial Properties\' ),
\'singular_name\' => __( \'My Property\' )
),
\'public\' => true,
\'menu_position\' => 5,
\'rewrite\' => array(\'slug\' => \'Myproperties\')
)
);
}
add_action( \'init\', \'create_post_type\' );
function property_taxonomy() {
register_taxonomy(
\'properties\',
\'my_properties\',
array(
\'hierarchical\' => true,
\'label\' => \'Category\',
\'query_var\' => true,
)
);
}
add_action( \'init\', \'property_taxonomy\' );
我尝试过:
•创建archive-my_properties.php (页面应以注册或slug命名?•重新保存永久链接•刷新重写规则