December 2017
Beginner
458 pages
7h 52m
English
In order to use widgets, first we have to include the initialization code in our functions.php file:
<?php // Theme Supportfunction theme_setup(){ // Featured Image Support add_theme_support('post-thumbnails'); set_post_thumbnail_size(900, 600); // Post Format Support add_theme_support('post-formats', array('gallery'));}add_action('after_setup_theme', 'theme_setup');
Read now
Unlock full access