¿Cómo verificar si un tema está activo?


11

Me gustaría poder verificar si el tema veintiocho está activo. Sé que si estaba buscando un complemento activo, haría algo como:

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

¿Cuál es la forma correcta de verificar si un tema está activo para poder ejecutar una función para ese tema?


Respuestas:


21

Puedes usar 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
}

O bien, simplemente puede verificar si existe una función en veintiocho, lo que probablemente sea menos confiable; un complemento, o incluso otro tema, podría declarar twentytwelve_setup, por ejemplo.

<?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
  }
Al usar nuestro sitio, usted reconoce que ha leído y comprende nuestra Política de Cookies y Política de Privacidad.
Licensed under cc by-sa 3.0 with attribution required.