假设您的帖子类型已注册为相册,您可以向帖子类型添加自定义分类法,如下所示:
add_action( \'init\', \'create_album_taxonomy\' );
function create_album_taxonomy() {
register_taxonomy(
\'albumtype\',
\'albums\', // content type here
array(
\'label\' => __( \'Album Type\' ),
\'rewrite\' => array( \'slug\' => \'albumtype\' ),
\'hierarchical\' => true,
)
);
}
将此放在您的函数中。php。希望这有帮助