我很难理解wp\\u enque\\u风格的第二个论点。以下是我的网站的设置方式:
风格。css自定义样式。css索引。php在模板中,我有以下代码:
$stylesheet_url = bloginfo(\'template_directory\') . \'/custom_style.css\';
wp_enqueue_style( \'custom_style\', $stylesheet_url );
这是行不通的。有什么原因吗?
输出只是模板目录的路径,作为原始文本输出,这显然不是正确的行为。
最合适的回答,由SO网友:Joshua Abenazer 整理而成
要将其他样式排队,应在函数中放置以下代码。php
function my_custom_styles() {
wp_enqueue_style( \'custom-style\', get_stylesheet_directory_uri() . \'/custom_style.css\');
}
add_action( \'wp_print_styles\', \'my_custom_styles\' );