Skip to content

Instantly share code, notes, and snippets.

@wpmu-authors
Created April 28, 2022 18:36
Show Gist options
  • Save wpmu-authors/eb467fc962925be2ea030e277ad815c6 to your computer and use it in GitHub Desktop.
Save wpmu-authors/eb467fc962925be2ea030e277ad815c6 to your computer and use it in GitHub Desktop.
/**********************************************************************************
wpmu_theme_support - adds theme support for post formats, post thumbnails, HTML5 and automatic feed links
**********************************************************************************/
function wpmu_theme_support() {
/* post formats */
add_theme_support( 'post-formats', array( 'aside', 'quote' ) );
/* post thumbnails */
add_theme_support( 'post-thumbnails', array( 'post', 'page' ) );
/* HTML5 */
add_theme_support( 'html5' );
/* automatic feed links */
add_theme_support( 'automatic-feed-links' );
}
add_action( 'after_setup_theme', 'wpmu_theme_support' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment