Bir temanın etkin olup olmadığı nasıl kontrol edilir?


12

Twentytwelve temasının etkin olup olmadığını kontrol etmek istiyorum. Aktif bir eklenti olup olmadığını kontrol ediyordum biliyorum:

$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' );
}

Bir temanın etkin olup olmadığını kontrol etmenin doğru yolu nedir, böylece o tema için bir işlev çalıştırabilirim?


Yanıtlar:


22

Şunları kullanabilirsiniz 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
}

Veya, yirmibirideki bir işlevin var olup olmadığını kontrol edebilirsiniz - ki bu daha az güvenilirdir; örneğin bir eklenti, hatta başka bir tema twentytwelve_setupbildirebilir.

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

5
  if( 'twentytwelve' == get_option( 'template' ) ) {
    // do something
  }
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.