Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- // Theme support
- function my_first_theme_setup() {
- add_theme_support('title-tag'); // Dynamic title tag
- add_theme_support('post-thumbnails'); // Featured images
- }
- add_action('after_setup_theme', 'my_first_theme_setup');
- // Enqueue styles
- function my_first_theme_styles() {
- wp_enqueue_style('main-style', get_stylesheet_uri());
- }
- add_action('wp_enqueue_scripts', 'my_first_theme_styles');
- ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement