Created
April 28, 2022 18:36
-
-
Save wpmu-authors/eb467fc962925be2ea030e277ad815c6 to your computer and use it in GitHub Desktop.
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
/********************************************************************************** | |
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