Last active
April 8, 2016 05:27
-
-
Save anoopranawat/45631679a57251a6e45fa1d5ed4a4694 to your computer and use it in GitHub Desktop.
Display featured image box in a post if your theme does not support it.
This file contains hidden or 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 | |
// Function to add support of featured image box. | |
function setup_featured_img() { | |
add_theme_support( 'post-thumbnails' ); | |
set_post_thumbnail_size( 624, 9999 ); | |
} | |
add_action( 'after_setup_theme', 'setup_featured_img' ); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment