Как загрузить последний CSS моей дочерней темы?некоторые другие файлы CSS загружаются до моего CSS, и это мой текущий код для загрузки CSS моей дочерней темы.Заранее спасибо!
add_action( 'wp_enqueue_scripts', 'my_theme_enqueue_styles' );
function my_theme_enqueue_styles() {
$parent_style = 'parent-style';
wp_enqueue_style( $parent_style, get_template_directory_uri() . '/style.css' );
wp_enqueue_style( 'child-style',
get_stylesheet_directory_uri() . '/roee.css',
array( $parent_style ),
wp_get_theme()->get('Version')
);
}