大家好,所以我一直在我的functions.php页面上工作,我的自定义Wordpress主题并不能解决问题...这是0到10行之间的东西...我读过的一些东西将它与get_stylesheet_uri()联系起来请帮助......我只是Wordpress的新手而无法解决这个问题......
<?php
function asns_resources() {
wp_enqueue_style('style', get_stylesheet_uri());
}
add_action('wp_enqueue_scripts', 'asns_resources');
//Custom Appearance
function allsugar_customise_register( $wp_customize ){
$wp_customize->add_setting('asns_link_colour', array(
'default' => '#f4f4f8',
'transport' => 'refresh',
));
$wp_customize->add_section('asns_standard_colours', array(
'title' => __('Standard Colours', 'AllSugar-NoSpice'),
'priority' => 30,
));
$wp_customize->add_control( new WP_Customize_Color_Control( $wp_customize, 'asns_link_colour_control', array(
'label' => __('Link Colour', 'AllSugar-NoSpice'),
'section' => 'asns_standard_colours',
'settings' => 'asns_link_colour',
) ) );
}
add_action('customize_register', 'allsugar_customise_register');
?>
答案 0 :(得分:1)
我以前经历过这个。只有在通过cPanel文件管理器进行编辑时才会这样做。
我发现问题的原因是我在打开文件进行编辑后更改了文件/文件夹的名称。
我所要做的就是将文件内容复制到剪贴板,然后关闭浏览器中的选项卡,再次重新访问该文件,然后粘贴代码,包含我之前所做的所有更改和VOILA! !它成功保存并且“参数'路径'是必需的”错误消失了。