您还没有打开php
在代码段的开头正确标记。尝试在之后添加至少一个空格<?php
就在第一个之前//
:
<?php // Load the theme stylesheets
function theme_styles() {
// Load all of the styles that need to appear on all pages
wp_enqueue_style( \'main_css\', get_template_directory_uri() . \'/style.css\' );
}
add_action(\'wp_enqueue_scripts\', \'theme_styles\');
?>