Last active
January 18, 2019 06:36
-
-
Save apisklov/b6da3f5f34333e9c33079e9c74fb9050 to your computer and use it in GitHub Desktop.
Start functions.php file wordpress
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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