在wp注册中。php有以下几行:
add_action( \'wp_head\', \'wpmu_signup_stylesheet\' );
get_header();
我需要删除
wpmu_signup_stylesheet
从
wp_head
行动,但我似乎在挣扎,我想这是因为行动是在后面被直接调用的。
以下是我从插件中尝试的内容:
// Called from an action that is added with:
// add_action(\'wp_head\', array($this, \'remove_signup_style\', 11));
remove_action( \'wp_head\', \'wpmu_signup_stylesheet\');