Como una adición a la otra respuesta de @ m0r7if3r:
Puede usar current_theme_supports()
para cargar solo la hoja de estilo de temas principales si hay compatibilidad con temas.
function add_supported_stylesheets()
{
if ( current_theme_supports( 'parent-stylesheet' ) )
wp_enqueue_style( 'main', get_stylesheet_directory_uri().'/style.css', array(), filemtime( get_stylesheet_directory().'/style.css' );
}
// In your parent themes bootstrap in the functions.php file
// Add the theme support:
add_theme_support( 'parent-stylesheet' );
// Then add the stylesheet:
add_action( 'after_setup_theme', 'add_supported_stylesheets', 20 );
Tenga en cuenta que esta función agrega filemtime
la versión nr. para evitar el almacenamiento en caché del navegador si se cambiaron los contenidos de los archivos.
Esto permitirá a sus usuarios deshabilitar la hoja de estilo en el arranque de temas secundarios con una simple llamada fn:
remove_theme_support( 'parent-stylesheet' );
// ...or...
add_theme_support( 'parent-stylesheet' );