मेरे मूल विषय (स्टार्क) एक सीएसएस फ़ाइल को जोड़ता है जिसे मैं हटाने की कोशिश कर रहा हूं (मैं इसके बजाय @import का उपयोग करना चाहता हूं ताकि मैं शैलियों को अधिक आसानी से ओवरराइड कर सकूं)। स्टार्क के अपने कार्य निम्नलिखित हैं।
add_action( 'wp_enqueue_scripts', 'script_enqueuer' );
function script_enqueuer() {
wp_register_script( 'site', get_template_directory_uri().'/js/site.js', array( 'jquery' ) );
wp_enqueue_script( 'site' );
wp_register_style( 'screen', get_template_directory_uri().'/style.css', '', '', 'screen' );
wp_enqueue_style( 'screen' );
}
मैंने बच्चे के कार्यों में निम्नलिखित की कोशिश की है। एफपीपी, लेकिन लिंक और स्क्रिप्ट टैग अभी भी सिर अनुभाग में दिखाई देते हैं।
add_action('init', 'removeScripts');
function removeScripts() {
wp_dequeue_style('screen');
wp_deregister_script('site');
}
मैंने यह देखने के लिए डबल जाँच की है कि क्या वे मूल शीर्षक में हार्ड कोडित हैं और वे नहीं हैं।