自定义发布类型和预先填充的自定义分类

时间:2015-01-31 作者:Davies-Barnard

我正在构建一个依赖于三种自定义分类法的自定义帖子类型。我正在注册所有海关和税务。。。使用init操作(这很有效,我可以管理新的方面)

...
register_taxonomy( \'cppstrands\', array( \'cppstatements\' ), $args );
...

//Part of the cppmatrix_init method called here
add_action( \'init\', \'cppmatrix_init\', 0 );
...
我也在尝试预缴税款。。使用register\\u activation\\u hook激活插件时使用数据,但由于不存在分类法,因此此操作失败。

...
if(taxonomy_exists(\'cppstrands\')) ...
...

//Part of the cppmatrix_dataInstall called here
register_activation_hook(__FILE__, \'cppmatrix_dataInstall\');
我怀疑init发生在register\\u activation\\u hook之前,但不知道如何解决它。

有人能帮忙吗?

谢谢

1 个回复
SO网友:Davies-Barnard

我解决了这个问题,将所有内容都放入init调用中,然后调用税务检查。。看看是不是空的。

我不相信这是最优雅的解决方案或最有效的解决方案,所以也许有人会纠正或确认我发现的解决方案。

结束

相关推荐