我跟着this guide 尝试将多个样式表排队以获取file picker 在Wordpress中工作。然而,当我遇到一个错误时Parse error: syntax error, unexpected \'(\', expecting variable (T_VARIABLE) or \'$\' in /home/effilxhy/public_html/WP/wp-content/themes/blankslate-child/av_question-form.php on line 2
. 我错过了什么?
functions.php
<?php ob_start(); ?>
<?php
function namespace_theme_stylesheets() {
wp_enqueue_style( \'parent-style\', get_template_directory_uri() . \'/style.css\' );
wp_enqueue_style( \'fileinput\', get_template_directory_uri() .\'/fileinput.css\', array(), null, \'all\' );
wp_enqueue_style( \'fileinput.min\', get_template_directory_uri() .\'/fileinput.min.css\', array(), null, \'all\' );
}
add_action( \'wp_enqueue_scripts\', \'namespace_theme_stylesheets\' );
?>
Names of files in WP folder
fileinput.css
fileinput.min.css
style.css
<小时>
最合适的回答,由SO网友:amespower 整理而成
您需要添加css所在的文件夹,因此如果您的样式为“css”,则可能会是这样:
wp_enqueue_style( \'parent-style\', get_template_directory_uri() . \'/css/style.css\' );