为什么我的排队不能正常工作?

时间:2015-08-18 作者:cowlicker12

我跟着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
<小时>

1 个回复
最合适的回答,由SO网友:amespower 整理而成

您需要添加css所在的文件夹,因此如果您的样式为“css”,则可能会是这样:

wp_enqueue_style( \'parent-style\', get_template_directory_uri() . \'/css/style.css\' );

结束

相关推荐

将WordPress附件导入wp-Content/Uploads/中的自定义目录

我希望有人能阐明我试图解决的这个问题,即使只是简单地改变我的思维过程,告诉我如何解决这个问题。我正在将一个基于CakePHP的定制CMS web应用程序导入WordPress,方法是遍历数据库,进行大量SQL查询,构建数组,最后输出必要的XML文件,以便使用WordPress导入工具导入。目前我已经很好地导入了类别、标签和帖子/页面,没有问题,但问题似乎出在图像上。基于CakePHP的CMS中当前的图像格式是images/year/month/day/post_id/image_name.ext据我所知,