Skip to content

Instantly share code, notes, and snippets.

@iiiBird
Last active August 29, 2015 14:16
Show Gist options
  • Save iiiBird/1b5ba7db58ab0726791d to your computer and use it in GitHub Desktop.
Save iiiBird/1b5ba7db58ab0726791d to your computer and use it in GitHub Desktop.
Подключить CSS
<?php
function my_style_method() {
wp_register_style( 'bootstrap', get_template_directory_uri() . '/css/bootstrap.min.css' );
wp_register_style( 'styles', get_template_directory_uri() . '/css/styles.css' );
wp_enqueue_style( 'bootstrap');
wp_enqueue_style( 'styles' );
}
add_action( 'wp_enqueue_scripts', 'my_style_method' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment