テーマがアクティブかどうかを確認するにはどうすればよいですか?


11

21のテーマがアクティブかどうかを確認したいのですが。アクティブなプラグインをチェックしていたかどうかはわかっています。

$active_plugins = apply_filters( 'active_plugins', get_option( 'active_plugins' ) );
if ( in_array( 'plugin-folder/plugin-folder.php', $active_plugins ) ) {
    //do stuff
} else {
add_action( 'admin_notices', 'create-a-notice' );
}

テーマがアクティブかどうかを確認して、そのテーマの関数を実行できるようにする適切な方法は何ですか?


回答:


21

使用できますwp_get_theme

<?php
$theme = wp_get_theme(); // gets the current theme
if ( 'Twenty Twelve' == $theme->name || 'Twenty Twelve' == $theme->parent_theme ) {
    // if you're here Twenty Twelve is the active theme or is
    // the current theme's parent theme
}

または、単純に、12の関数が存在するかどうかを確認することもできます。twentytwelve_setupたとえば、プラグイン、または別のテーマでを宣言できます。

<?php
if ( function_exists( 'twentytwelve_setup' ) ) {
   // Twenty Twelve is the current theme or the active theme's parent.
}

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