我目前正在为Wordpress构建一个插件,但我的样式和脚本并没有在视图页面中加载。
功能:
function getFrontEnd()
{
// we always need jquery
wp_enqueue_script('jquery');
// load the core plugin scripts/styles
wp_enqueue_script('flex-script', __DIR__ . '/view/assets/js/wp-flex.js');
wp_enqueue_style('flex-style', __DIR__ . '/view/assets/css/wp-flex.css');
}
查看:
function getFlexImportView()
{
$pluginIndex = new controllers\FlexImport;
echo $pluginIndex->getOverview();
}
在FlexImport类中,您将找到执行html的文件的包含。
检查后,两个样式文件都不在html文件中。
非常感谢!
答案 0 :(得分:1)
首先检查文件路径。使用此:
wp_enqueue_style('flex-script',plugin_dir_url( FILE )。'view / assets / js / wp-flex.js');