相同类别的帖子,易于数字下载

时间:2019-01-03 12:15:41

标签: wordpress

我有一个wordpress网站,上面有简单的数字下载插件。我想在帖子中拥有相同的类别,并希望数字下载容易。该怎么办?

预先感谢

1 个答案:

答案 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"

        }