Wordpressブログでアクティブなプラグインのリストをプログラムで取得するにはどうすればよいですか?


13

私は2つのブログを持っています。1つはマルチサイトで、もう1つはそうではありません。両方のブログでアクティブなプラグインのリストを取得して、それらを比較できるようにします。マルチサイトブログでは、サイト全体だけでなくネットワーク全体で有効になっているプラ​​グインを一覧表示します。

回答:


20

アクティブ化されたプラグインは、WordPressブログのオプションテーブルのキーの下に保存されます。 active_plugins

get_option('active_plugins'); 各ブログを使用して配列を比較できます。


2
get_plugins()が非アクティブなプラグインを含むすべてのプラグインを提供することを追加する価値があります。
チャールズジャイメット14年

13

ダッシュボードウィジェットの形式で、1つは単一サイトおよびネットワークサイトダッシュボード用、もう1つはマルチサイトネットワークダッシュボード用です。

/*
 * Single Site Dashboard Widget
 */
add_action('wp_dashboard_setup', 'wpse_54742_wp_dashboard_setup');

function wpse_54742_wp_dashboard_setup() {
    wp_add_dashboard_widget( 'wpse_54742_active_site_plugins', __( 'Active Plugins' ), 'wpse_54742_active_site_plugins' );
}

function wpse_54742_active_site_plugins() {
    $the_plugs = get_option('active_plugins'); 
    echo '<ul>';
    foreach($the_plugs as $key => $value) {
        $string = explode('/',$value); // Folder name will be displayed
        echo '<li>'.$string[0] .'</li>';
    }
    echo '</ul>';
}


/*
 * Multisite Dashboard Widget
 */
add_action('wp_network_dashboard_setup', 'wpse_54742_network_dashboard_setup');

function wpse_54742_network_dashboard_setup() {
    wp_add_dashboard_widget( 'wpse_54742_active_network_plugins', __( 'Network Active Plugins' ), 'wpse_54742_active_network_plugins' );
}

function wpse_54742_active_network_plugins() {
    /*
     * Network Activated Plugins
     */
    $the_plugs = get_site_option('active_sitewide_plugins'); 
    echo '<h3>NETWORK ACTIVATED</h3><ul>';
    foreach($the_plugs as $key => $value) {
        $string = explode('/',$key); // Folder name will be displayed
        echo '<li>'.$string[0] .'</li>';
    }
    echo '</ul>';


    /*
     * Iterate Through All Sites
     */
    global $wpdb;
    $blogs = $wpdb->get_results($wpdb->prepare("
        SELECT blog_id
        FROM {$wpdb->blogs}
        WHERE site_id = '{$wpdb->siteid}'
        AND spam = '0'
        AND deleted = '0'
        AND archived = '0'
    "));

    echo '<h3>ALL SITES</h3>';

    foreach ($blogs as $blog) {
        $the_plugs = get_blog_option($blog->blog_id, 'active_plugins'); 
        echo '<hr /><h4><strong>SITE</strong>: '. get_blog_option($blog->blog_id, 'blogname') .'</h4>';
        echo '<ul>';
        foreach($the_plugs as $key => $value) {
            $string = explode('/',$value); // Folder name will be displayed
            echo '<li>'.$string[0] .'</li>';
        }
        echo '</ul>';
    }
}

1
これは私が必要としていた以上のものでしたが、そのような詳細な答えを提供する時間を割いてくれたことに本当に感謝しています。うまくいけば、それは他の誰かを助けるでしょう。ありがとうございました。
計算

4

プラグインのリストとそれらが使用されているサイト(マルチサイトのみ)

どのプラグインが現在アクティブで、どのサイトで有効かを知りたい場合は、そのような機能を使用できます。

function wpstars_list_active_plugins() {

  if ( function_exists( 'get_sites' ) && class_exists( 'WP_Site_Query' ) ) {

    echo "<table class='active-plugins'>";
    echo "<tr><th>Plugin name</th><th>Sites</th></tr>";

    $plugins = get_plugins();

    // Network activated
    $active_plugins = get_site_option('active_sitewide_plugins');
    foreach($active_plugins as $active_path => $active_plugin) {

      $plugins[$active_path]['Sites'] = "A,";
    }

    // Per site activated
    $sites = get_sites();
    foreach ( $sites as $site ) {

      $active_plugins = get_blog_option($site->blog_id, 'active_plugins');
      foreach($active_plugins as $active_plugin) {

        $plugins[$active_plugin]['Sites'] .= $site->blog_id . ",";
      }
    }

    foreach($plugins as $plugin) {

      echo "<tr><td>{$plugin['Name']}</td><td>{$plugin['Sites']}</td></tr>";
    }

    echo "</table>";
  }
}

1

WP-CLIは単なるチケットです。非常に多くのことのために、私はカウントを失った場合に使用しました!

wp plugin list --status=active

必要に応じて、エイリアスを使用してローカルマシンこれらのコマンドを実行できます ...

次に、@ site関数を使用します

wp @all plugin list --status=active

または

wp @multisite list --status=active
wp @blog list --status=active
弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.