How to add Features in WordPress using add_theme_support Function
While developing wordpress theme, you wont get section to add post image. So you need to add the following codes to function.php To display thumbnail in single.php or page.php (anywhere in frontend), you need to insert this code inside php // Add feaure image thumbnail function thumbnail_add(){ add_theme_support( ‘post-thumbnails’ ); } add_action(“after_setup_theme”,”thumbnail_add”); add_action is an … Read moreHow to add Features in WordPress using add_theme_support Function