更改加载Wordpress插件的顺序(先加载)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了更改加载Wordpress插件的顺序(先加载)相关的知识,希望对你有一定的参考价值。

  1. function this_plugin_first() {
  2. // ensure path to this file is via main wp plugin path
  3. $wp_path_to_this_file = preg_replace('/(.*)plugins/(.*)$/', WP_PLUGIN_DIR."/$2", __FILE__);
  4. $this_plugin = plugin_basename(trim($wp_path_to_this_file));
  5. $active_plugins = get_option('active_plugins');
  6. $this_plugin_key = array_search($this_plugin, $active_plugins);
  7. if ($this_plugin_key) { // if it's 0 it's the first plugin already, no need to continue
  8. array_splice($active_plugins, $this_plugin_key, 1);
  9. array_unshift($active_plugins, $this_plugin);
  10. update_option('active_plugins', $active_plugins);
  11. }
  12. }
  13. add_action("activated_plugin", "this_plugin_first");

以上是关于更改加载Wordpress插件的顺序(先加载)的主要内容,如果未能解决你的问题,请参考以下文章

Wordpress css 加载问题

更改页面上已有图像的加载顺序

Wordpress 插件 - CSS 未加载

使用带有 Wordpress 插件的 ajax 重新加载

Cocos Creator 加载使用protobuf第三方库,因为加载顺序报错

VueJS 2:如何按顺序加载静态 JS?