Сообщество IT-специалистов
Ответы на любые вопросы об IT
Профессиональное развитие в IT
Удаленная работа для IT-специалистов
function spon_style() { wp_enqueue_style( 'Me_css_code', get_template_directory_uri() . '/spon.css', array(), '1.0' ); } add_action( 'wp_enqueue_scripts', 'spon_style' );
add_action( 'wp_enqueue_scripts', 'spon_style', 100 );
add_action( 'wp_head', 'my_wp_custom_css', 200 ); function my_wp_custom_css() { echo '<link rel="stylesheet" href="' . get_template_directory_uri() . '/spon.css"/>'; }