Jeg modtager følgende advarsel om filemtime ():
Advarsel: filemtime (): stat mislykkedes for https://testing.local/wp-content/plugins/test-social-icons/css/style.css i / app / public / wp-content / plugins / zoo-social-icons / zoo-social-icons.php on line 29
Her er det, hvordan jeg følger den typografiark i mit plugin:
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" );
Stylearket følger korrekt. Hvorfor får jeg denne advarsel?
plugin_dir_path()
skulle væreplugin_dir_url()
. Den anden tilfilemtime()
, skal stadig væreplugin_dir_path()
, fordifilemtime()
kræver en sti, ikke en URL, men browseren kræver en URL , hvilket er hvad den første på e er til.