Используйте get_template_directory_uri()
вместо get_stylesheet_uri()
, как в вашем functions.php
файле.
Ниже приведен фрагмент, иллюстрирующий, как он должен читаться;
function style_files() {
wp_enqueue_style(
'style_main',
get_template_directory_uri() . '/style.css',
array(),
false,
'all'
);
}
add_action( 'wp_enqueue_scripts', 'style_files' );
Это безопасный способчтобы добавить / поставить в очередь файл таблицы стилей в вашей теме WordPress.
Выше приведен следующий формат:
wp_enqueue_style( $handle, $src, $deps, $ver, $media );
где
$handle
(string) (Required) Name of the stylesheet. Should be unique.
$src
(string) (Optional) Full URL of the stylesheet,
or path of the stylesheet relative to the WordPress root directory.
Default value: ''
$deps
(array) (Optional) An array of registered stylesheet handles this stylesheet depends on.
Default value: array()
$ver
(string|bool|null) (Optional) String specifying stylesheet version number, if it has one,
which is added to the URL as a query string for cache busting purposes. If version is set to
false, a version number is automatically added equal to current installed WordPress version.
If set to null, no version is added.
Default value: false
$media
(string) (Optional) The media for which this stylesheet has been defined.
Accepts media types like 'all', 'print' and 'screen', or media queries like
'(orientation: portrait)' and '(max-width: 640px)'.
Default value: 'all'
Более подробная информация доступна здесь.