theme_support
// Register Theme Features function theme_support() { // Add theme support for Post Formats add_theme_support( 'post-formats', array( ) ); // Add theme support for Featured Images add_theme_support( 'post-thumbnails' ); // Add theme support for HTML5 Semantic Markup add_theme_support( 'html5', array( ) ); // Add theme support for custom CSS in the TinyMCE visual editor add_editor_style(); } add_action( 'after_setup_theme', 'theme_support' );