我正在构建一个依赖于三种自定义分类法的自定义帖子类型。我正在注册所有海关和税务。。。使用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之前,但不知道如何解决它。
有人能帮忙吗?
谢谢