LoginSignup
1
1

More than 5 years have passed since last update.

WordPressプラグインのslugを取得する

Posted at

概要

WordPress本番環境から開発環境をVCCWで建てるのにプラグインのslug一覧を手っ取り早く取得したい

管理画面からWordPressプラグインのslugを取得する

管理画面からプラグイン一覧に移動してコンソール開いて以下のJavaScriptを実行

"- " + [...document.querySelectorAll("#the-list tr")]
  .map(el => el.getAttribute("data-slug"))
  .filter((x, i, self) => self.indexOf(x) === i)
  .join("\n- ");

こんな感じで取得できます

スクリーンショット 2019-04-24 18.17.40.png

あとはVCCWの設定ファイルにコピペするだけ
スクリーンショット 2019-04-24 18.19.05.png

1
1
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
1