从WP-Geo-WordPress插件中删除CSSJS和/或仪表板小部件

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了从WP-Geo-WordPress插件中删除CSSJS和/或仪表板小部件相关的知识,希望对你有一定的参考价值。

Here are a couple of snippets for removing the CSS, JS, and Dashboard widget created by the WP Geo plugin. I love this plugin but often only use it as a simple way to embed geo data on posts and don't actually need it to generate maps.
  1. // remove WP Geo Dashboard widget
  2. remove_filter( 'wp_dashboard_widgets', array( $wpgeo_dashboard, 'add_widget' ) );
  3.  
  4. // remove WP Geo JS/CSS from head if not looking at WP admin
  5. if (!is_admin()) {
  6. remove_action( 'wp_print_scripts', array( $wpgeo, 'includeGoogleMapsjavascriptAPI' ) );
  7. remove_action( 'wp_head', array( $wpgeo, 'wp_head' ) );
  8. remove_action( 'wp_footer', array( $wpgeo, 'wp_footer' ) );
  9. }

以上是关于从WP-Geo-WordPress插件中删除CSSJS和/或仪表板小部件的主要内容,如果未能解决你的问题,请参考以下文章

如何从 elementor-lite.min.css 文件中删除 CSS 样式

Colorbox - 从特定窗口中删除关闭按钮

从项目中删除科尔多瓦插件

从网站代码中删除未使用的 CSS

如何从插件扩展 jQuery.css

从 WordPress url 中删除类别和标签库 - 没有插件