Prevent loading of functions

时间:2018-05-12 作者:Markus

我使用了一个主题,其中包括名为“Sharethis”的服务的共享功能和字体真棒。据我所知,函数是从函数中的以下行加载的。php。

TT\\u队列::add\\u css(数组(“//netdna.bootstrapcdn.com/font-awesome/4.5.0/css/font-awesome.min.css”);TT\\u排队::add\\u js(array(\'https://ws.sharethis.com/button/buttons.js\'));

如何使用子函数(因为父函数中的更改将在更新后消失)来:

完全禁用共享此功能告诉主题从本地服务器加载font awesome?

感谢您的帮助:)

问候Markus

1 个回复
SO网友:coolpasta

我假设add_cssadd_js 是包装器wp_enqueue_stylewp_enqueue_script.

因此,注册任何样式/脚本的方式是wp_dequeue_stylewp_dequeue_script, where you pass the handle of the scripts.

请参见:https://developer.wordpress.org/reference/functions/wp_dequeue_script/

现在,仅从代码来看,it doesn\'t seem like he\'s passing any handles to these "register" functions, 所以看看源代码,他必须在该类的静态方法中传递它们的名称。

结束

相关推荐

从Functions.php访问插件数据

我正在尝试将wordpress帖子中的数据插入到新的表数据库表中,而不是WP_postmeta. 我的函数正在运行,它将插入$postid 没问题。我遇到的问题是,我需要从Marty Spellerbergs的“地址地理编码器”插件中插入纬度和经度坐标。在插件页面上,Marty说您可以使用以下内容访问循环中的Cooridate:<?php echo get_geocode_lng( $post->ID ); ?> <?php echo get_geocode_lat( $p