Skip to content

Instantly share code, notes, and snippets.

@apisklov
Last active January 18, 2019 06:36
Show Gist options
  • Save apisklov/b6da3f5f34333e9c33079e9c74fb9050 to your computer and use it in GitHub Desktop.
Save apisklov/b6da3f5f34333e9c33079e9c74fb9050 to your computer and use it in GitHub Desktop.
Start functions.php file wordpress
<?php
/**
* Поддержка миниатюр
*/
add_theme_support('post-thumbnails');
/**
* Подключение скриптов
*/
add_action( 'wp_enqueue_scripts', 'enqueue_scripts' );
function enqueue_scripts() {
wp_enqueue_style( 'style', get_stylesheet_uri() );
wp_enqueue_style( 'main', get_template_directory_uri() . '/css/main.min.css' );
wp_enqueue_script( 'js', get_template_directory_uri() . '/js/scripts.min.js');
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment