Wordpress 主题中的 HMTL 中缺少 Style.css 文件名

问题描述 投票:0回答:1

希望你们中的一些人可以帮助我一点。我不知道为什么 WordPress 主题输出不包含 style.css。只有主题目录的正确路径,但 style.css 缺少“...themes/wp-test-theme?ver=6.7.1”

functions.php 函数 my_theme_scripts() {

wp_enqueue_style( 'style-own', get_stylesheet_directory_uri(  ) );

}

add_action('wp_enqueue_scripts','my_theme_scripts');

输出

链接 rel="stylesheet" id="style-own-css" href="http://localhost/wp-test/wp-content/themes/wp-test-theme?ver=6.7.1" type="文本/css”媒体=“全部”>

css wordpress themes add-action
1个回答
0
投票

试试这个。

要包含 style.css,您需要指定其完整路径。 函数.php

function my_theme_scripts() {
   
    wp_enqueue_style( 'style-own', get_stylesheet_directory_uri() . '/style.css' );
}
add_action( 'wp_enqueue_scripts', 'my_theme_scripts' );
© www.soinside.com 2019 - 2024. All rights reserved.