Я использую дочернюю тему Двадцать шестнадцать в Wordpress. Но я получаю 25 ошибок ... в основном неожиданные ошибки токена, но некоторые ожидаемые ошибки LBRACE и ожидаемые IDENT. Я понятия не имею, что это значит. Любая помощь будет принята с благодарностью.
https://i.imgur.com/EwLrreI.jpg
https://i.imgur.com/jxwk300.jpg
https://i.imgur.com/9MUPHRu.jpg
<?php
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
$parent_style = 'parent-style'; // This is 'twentysixteen-style' for the Twenty Sixteen theme.
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/style.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}
?>