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?

Opmerkingen

  • Sally ' s opmerking hier was dat de eerste plugin_dir_path() moest plugin_dir_url() zijn. De tweede, voor filemtime(), moet nog steeds plugin_dir_path() zijn, omdat filemtime() een pad vereist, geen URL, maar de browser vereist een URL , dat is wat de eerste is e is voor.
  • Boom, dat werkt! Bedankt @JacobPeattie. Plaats uw antwoord en ik ' markeer het als geaccepteerd.

Geef een reactie

Het e-mailadres wordt niet gepubliceerd. Vereiste velden zijn gemarkeerd met *