Last active
January 20, 2017 15:02
-
-
Save websupporter/f843c696959f344231fe67334799b7e4 to your computer and use it in GitHub Desktop.
For my blogpost http://websupporter.net/blog/de/starter-content-fuer-themes/
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 | |
add_action( 'after_setup_theme', 'theme_start_content' ); | |
function theme_starter_content() { | |
add_theme_support( 'starter-content', array( | |
'posts' => array( | |
'home', | |
'about', | |
'contact', | |
'blog', | |
'news', | |
'homepage-section', | |
), | |
) ); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment