- +7(962)141-55-43
- @wpprog
- emel8881
- serj-post@mail.ru
Главная страница » Статьи » Как подключить свои стили в WordPress
// Подключаем свои стили
add_action( 'wp_enqueue_scripts', 'esa_add_style', 25 );
function esa_add_style() {
wp_enqueue_style( 'esa_style', get_stylesheet_directory_uri() . '/css/esa_style.css',array(),
filemtime( get_stylesheet_directory() . '/css/esa_style.css' ) );
}