Ik “ontvang de volgende filemtime () waarschuwing:
Waarschuwing: filemtime (): stat mislukt voor https://testing.local/wp-content/plugins/test-social-icons/css/style.css in / app / public / wp-content / plugins / zoo-social-icons / zoo-social-icons.php on line 29
Hier is hoe ik de stylesheet in mijn plug-in:
function test_styles_scripts() { $dir = plugin_dir_url(__FILE__); wp_enqueue_style( "test-style", $dir . "css/style.css", array(), filemtime( $dir . "css/style.css" ) ); } add_action( "wp_enqueue_scripts", "test_styles_scripts" );
De stylesheet is correct in wachtrij geplaatst. Waarom krijg ik deze waarschuwing?
plugin_dir_path()
moestplugin_dir_url()
zijn. De tweede, voorfilemtime()
, moet nog steedsplugin_dir_path()
zijn, omdatfilemtime()
een pad vereist, geen URL, maar de browser vereist een URL , dat is wat de eerste is e is voor.