我有一个wordpress网站,上面有简单的数字下载插件。我想在帖子中拥有相同的类别,并希望数字下载容易。该怎么办?
预先感谢
答案 0 :(得分:1)
检查此代码是否正常工作并通过测试。
add_action( 'init', 'wpshout_add_category_to_easydigital' );
function wpshout_add_category_to_easydigital()
{
register_taxonomy_for_object_type( 'category', 'easydigital' ); // register category to custom post type "easydigital"
}