从外部类中删除动作
我正在尝试执行与此问题类似的操作:使用外部类的remove_action或remove_filter? 我正在尝试删除 <!-- This site is optimized with the Yoast WordPress SEO plugin v1.0.3 - http;//yoast.com/wordpress/seo/ --> 来自插件的消息。 在您对我大吼大叫这可能是不道德的之前,作者说可以在这里做:http : //wordpress.org/support/topic/plugin-wordpress-seo-by-yoast-how-to-remove-dangerous在页面标题中插入酵母消息?回复= 29#post-2503475 我找到了在此处添加注释的类:http : //plugins.svn.wordpress.org/wordpress-seo/tags/1.2.8.7/frontend/class-frontend.php 基本WPSEO_Frontend类有一个名为函数debug_marker,然后通过一个命名的函数调用head,然后将其加入到wp_head在__Construct 我是新手,但是我找到了一种方法来完全去除头部 global $wpseo_front; remove_action( 'wp_head', array($wpseo_front,'head'), 1, 1 ); 但我只想从中删除该debug_marker部分。我试过了但是没用 remove_action( 'wp_head', array($wpseo_front,'head','debug_marker'), 1, 1 ); 正如我说的,我是新手,所以任何帮助都会很棒。