@ M0r7if3r tarafından verilen diğer yanıta ek olarak:
current_theme_supports()
Üst tema stil sayfasını yalnızca tema desteği varsa yüklemek için kullanabilirsiniz .
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 );
Bu işlevin filemtime
nr sürümüne eklendiğini unutmayın . dosya içeriği değiştirilirse tarayıcının önbelleğe alınmasını önlemek için.
Bu, kullanıcılarınızın alt temalar önyüklemesindeki stil sayfasını basit bir tek fn çağrısıyla devre dışı bırakmasına olanak tanır:
remove_theme_support( 'parent-stylesheet' );
// ...or...
add_theme_support( 'parent-stylesheet' );