@ M0r7if3r দ্বারা অন্য উত্তরের সংযোজন হিসাবে:
current_theme_supports()
থিম সমর্থন থাকলে আপনি কেবল পিতামাতার থিমের শৈলীপত্র লোড করতে ব্যবহার করতে পারেন ।
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 );
দ্রষ্টব্য, এই ফাংশনটি filemtime
সংস্করণ-এনআর-তে যুক্ত করে। ফাইলের বিষয়বস্তু পরিবর্তন করা থাকলে ব্রাউজারের ক্যাচিং প্রতিরোধ করতে।
এটি আপনার ব্যবহারকারীদের সরল একক এফএন কল দিয়ে চাইল্ড থিম বুটস্ট্র্যাপে স্টাইলশিটটি অক্ষম করতে দেয়:
remove_theme_support( 'parent-stylesheet' );
// ...or...
add_theme_support( 'parent-stylesheet' );