Ich erhalte die folgende filemtime () Warnung:
Warnung: filemtime (): stat fehlgeschlagen für 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 in Zeile 29
So stelle ich das ein Stylesheet in meinem 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" );
Das Stylesheet befindet sich korrekt in der Warteschlange. Warum erhalte ich diese Warnung?
Kommentare
- Sally ' s Kommentar hier war, dass die Das erste
plugin_dir_path()
mussteplugin_dir_url()
sein. Das zweite fürfilemtime()
muss immer nochplugin_dir_path()
sein, dafilemtime()
einen Pfad und keine URL erfordert, der Browser jedoch eine URL , was ist das erste auf e ist für. - Boom, das funktioniert! Vielen Dank, dass Sie @JacobPeattie. Bitte posten Sie Ihre Antwort und ich ' werde sie als akzeptiert markieren.