gpt4 book ai didi

php - 在 remove_action() 方面需要帮助

转载 作者:行者123 更新时间:2023-12-04 21:58:40 25 4
gpt4 key购买 nike

我正在尝试删除难看的嵌入式 <STYLE>标记内置的最近评论小部件放入我的 <HEAD> ,但我似乎无法正确使用语法。它最初调用

add_action( 'wp_head', array(&$this, 'recent_comments_style') );

添加它(在 wp-includes/default-widgets.php, line 609 中),我正在尝试撤消它。

我觉得应该是这样的:

remove_action('wp_head', 'WP_Widget_Recent_Comments::recent_comments_style');

但是我已经尝试了所有的变体,我仍然无法做到正确。有谁知道如何实现这一点?

可能有帮助:

最佳答案

这是正确的代码:

add_action('wp_head', 'remove_widget_action', 1);
function remove_widget_action() {
global $wp_widget_factory;

remove_action( 'wp_head', array($wp_widget_factory->widgets['WP_Widget_Recent_Comments'], 'recent_comments_style') );
}

但是,由于this bug,它不起作用.

关于php - 在 remove_action() 方面需要帮助,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1261764/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com