WordPress Get the current plugin name?

WordPress在插件中取插件資訊

$plugin_data = get_plugin_data( __FILE__ );
$plugin_name = $plugin_data['Name'];

預設資料有這些:

$default_headers = array(
  'Name' => 'Plugin Name',
  'PluginURI' => 'Plugin URI',
  'Version' => 'Version',
  'Description' => 'Description',
  'Author' => 'Author',
  'AuthorURI' => 'Author URI',
  'TextDomain' => 'Text Domain',
  'DomainPath' => 'Domain Path',
  'Network' => 'Network',
  // Site Wide Only is deprecated in favor of Network.
  '_sitewide' => 'Site Wide Only',
);

 

參考資料:

發佈留言

發佈留言必須填寫的電子郵件地址不會公開。 必填欄位標示為 *

這個網站採用 Akismet 服務減少垃圾留言。進一步了解 Akismet 如何處理網站訪客的留言資料