-
-
Save EmranAhmed/8f8ed30004b7bfb5c98cb7ac47efba58 to your computer and use it in GitHub Desktop.
How to use the Starter Content in your WordPress Theme WP Starter Content, Demo contents
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_theme_support( 'starter-content', array( | |
// Content Section for Widgets | |
'widgets' => array( | |
// Sidebar | |
'sidebar-1' => array( | |
// Widget ID | |
'my_text' => array( | |
// Widget $id -> set when creating a Widget Class | |
'text' , | |
// Widget $instance -> settings | |
array( | |
'title' => 'My Title', | |
'text' => 'My Text' | |
) | |
) | |
) | |
), | |
// Content Section for Posts/Pages/CPT | |
'posts' => array( | |
// Post Symbol -> for internal use | |
'home' => array( | |
'post_type' => 'page', | |
'post_title' => _x( 'Home', 'Theme starter content' ), | |
'post_content' => _x( 'Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.', 'Theme starter content' ), | |
'template' => 'sample-page-template.php', | |
), | |
'custom' => array( | |
'post_type' => 'post', | |
'post_title' => 'Custom Post', | |
'thumbnail' => '{{featured-image-logo}}', // Check attachments.php | |
), | |
) | |
)); |
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_theme_support( 'starter-content', array( | |
// ... | |
'attachments' => array( | |
'image-espresso' => array( | |
'post_title' => _x( 'Espresso', 'Theme starter content', 'twentyseventeen' ), | |
'file' => 'assets/images/espresso.jpg', | |
), | |
'image-sandwich' => array( | |
'post_title' => _x( 'Sandwich', 'Theme starter content', 'twentyseventeen' ), | |
'file' => 'assets/images/sandwich.jpg', | |
), | |
'image-coffee' => array( | |
'post_title' => _x( 'Coffee', 'Theme starter content', 'twentyseventeen' ), | |
'file' => 'assets/images/coffee.jpg', | |
), | |
), | |
// ... | |
); | |
add_theme_support( 'starter-content', array( | |
'attachments' => array( | |
'featured-image-logo' => array( | |
'post_title' => 'Featured Logo', | |
'post_content' => 'Attachment Description', | |
'post_excerpt' => 'Attachment Caption', | |
'file' => 'assets/images/featured-logo.jpg', | |
), | |
), | |
'posts' => array( | |
'about' => array( | |
// Use the above featured image with the predefined about page | |
'thumbnail' => '{{featured-image-logo}}', | |
), | |
), | |
); |
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 | |
$core_content = array( | |
'widgets' => array( | |
'text_business_info' => array( 'text', array( | |
'title' => _x( 'Find Us', 'Theme starter content' ), | |
'text' => join( '', array( | |
'<p><strong>' . _x( 'Address', 'Theme starter content' ) . '</strong><br />', | |
_x( '123 Main Street', 'Theme starter content' ) . '<br />' . _x( 'New York, NY 10001', 'Theme starter content' ) . '</p>', | |
'<p><strong>' . _x( 'Hours', 'Theme starter content' ) . '</strong><br />', | |
_x( 'Monday—Friday: 9:00AM–5:00PM', 'Theme starter content' ) . '<br />' . _x( 'Saturday & Sunday: 11:00AM–3:00PM', 'Theme starter content' ) . '</p>' | |
) ), | |
) ), | |
'text_about' => array( 'text', array( | |
'title' => _x( 'About This Site', 'Theme starter content' ), | |
'text' => _x( 'This may be a good place to introduce yourself and your site or include some credits.', 'Theme starter content' ), | |
) ), | |
'archives' => array( 'archives', array( | |
'title' => _x( 'Archives', 'Theme starter content' ), | |
) ), | |
'calendar' => array( 'calendar', array( | |
'title' => _x( 'Calendar', 'Theme starter content' ), | |
) ), | |
'categories' => array( 'categories', array( | |
'title' => _x( 'Categories', 'Theme starter content' ), | |
) ), | |
'meta' => array( 'meta', array( | |
'title' => _x( 'Meta', 'Theme starter content' ), | |
) ), | |
'recent-comments' => array( 'recent-comments', array( | |
'title' => _x( 'Recent Comments', 'Theme starter content' ), | |
) ), | |
'recent-posts' => array( 'recent-posts', array( | |
'title' => _x( 'Recent Posts', 'Theme starter content' ), | |
) ), | |
'search' => array( 'search', array( | |
'title' => _x( 'Search', 'Theme starter content' ), | |
) ), | |
), | |
'nav_menus' => array( | |
'page_home' => array( | |
'type' => 'post_type', | |
'object' => 'page', | |
'object_id' => '{{home}}', | |
), | |
'page_about' => array( | |
'type' => 'post_type', | |
'object' => 'page', | |
'object_id' => '{{about}}', | |
), | |
'page_blog' => array( | |
'type' => 'post_type', | |
'object' => 'page', | |
'object_id' => '{{blog}}', | |
), | |
'page_news' => array( | |
'type' => 'post_type', | |
'object' => 'page', | |
'object_id' => '{{news}}', | |
), | |
'page_contact' => array( | |
'type' => 'post_type', | |
'object' => 'page', | |
'object_id' => '{{contact}}', | |
), | |
'link_email' => array( | |
'title' => _x( 'Email', 'Theme starter content' ), | |
'url' => 'mailto:[email protected]', | |
), | |
'link_facebook' => array( | |
'title' => _x( 'Facebook', 'Theme starter content' ), | |
'url' => 'https://www.facebook.com/wordpress', | |
), | |
'link_foursquare' => array( | |
'title' => _x( 'Foursquare', 'Theme starter content' ), | |
'url' => 'https://foursquare.com/', | |
), | |
'link_github' => array( | |
'title' => _x( 'GitHub', 'Theme starter content' ), | |
'url' => 'https://github.com/wordpress/', | |
), | |
'link_instagram' => array( | |
'title' => _x( 'Instagram', 'Theme starter content' ), | |
'url' => 'https://www.instagram.com/explore/tags/wordcamp/', | |
), | |
'link_linkedin' => array( | |
'title' => _x( 'LinkedIn', 'Theme starter content' ), | |
'url' => 'https://www.linkedin.com/company/1089783', | |
), | |
'link_pinterest' => array( | |
'title' => _x( 'Pinterest', 'Theme starter content' ), | |
'url' => 'https://www.pinterest.com/', | |
), | |
'link_twitter' => array( | |
'title' => _x( 'Twitter', 'Theme starter content' ), | |
'url' => 'https://twitter.com/wordpress', | |
), | |
'link_yelp' => array( | |
'title' => _x( 'Yelp', 'Theme starter content' ), | |
'url' => 'https://www.yelp.com', | |
), | |
'link_youtube' => array( | |
'title' => _x( 'YouTube', 'Theme starter content' ), | |
'url' => 'https://www.youtube.com/channel/UCdof4Ju7amm1chz1gi1T2ZA', | |
), | |
), | |
'posts' => array( | |
'home' => array( | |
'post_type' => 'page', | |
'post_title' => _x( 'Home', 'Theme starter content' ), | |
'post_content' => _x( 'Welcome to your site! This is your homepage, which is what most visitors will see when they come to your site for the first time.', 'Theme starter content' ), | |
), | |
'about' => array( | |
'post_type' => 'page', | |
'post_title' => _x( 'About', 'Theme starter content' ), | |
'post_content' => _x( 'You might be an artist who would like to introduce yourself and your work here or maybe you’re a business with a mission to describe.', 'Theme starter content' ), | |
), | |
'contact' => array( | |
'post_type' => 'page', | |
'post_title' => _x( 'Contact', 'Theme starter content' ), | |
'post_content' => _x( 'This is a page with some basic contact information, such as an address and phone number. You might also try a plugin to add a contact form.', 'Theme starter content' ), | |
), | |
'blog' => array( | |
'post_type' => 'page', | |
'post_title' => _x( 'Blog', 'Theme starter content' ), | |
), | |
'news' => array( | |
'post_type' => 'page', | |
'post_title' => _x( 'News', 'Theme starter content' ), | |
), | |
'homepage-section' => array( | |
'post_type' => 'page', | |
'post_title' => _x( 'A homepage section', 'Theme starter content' ), | |
'post_content' => _x( 'This is an example of a homepage section. Homepage sections can be any page other than the homepage itself, including the page that shows your latest blog posts.', 'Theme starter content' ), | |
), | |
), | |
); |
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_theme_support( 'starter-content', array( | |
// ... | |
'options' => array( | |
'show_on_front' => 'page', | |
'page_on_front' => '{{home}}', | |
'page_for_posts' => '{{blog}}', | |
// Our Custom | |
'blogdescription' => 'My Awesome Blog' | |
), | |
// ... | |
); |
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 | |
// Plugin widget added using filters | |
function myprefix_starter_content_add_widget( $content, $config ) { | |
if ( isset( $content['widgets']['sidebar-1'] ) ) { | |
$content['widgets']['sidebar-1']['a_custom_widget'] = array( | |
'my_custom_widget', array( | |
'title' => 'A Special Plugin Widget', | |
), | |
); | |
} | |
return $content; | |
} | |
add_filter( 'get_theme_starter_content', 'myprefix_starter_content_add_widget', 10, 2 ); |
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_theme_support( 'starter-content', array( | |
// ... | |
// Twenty Seventeen | |
'posts' => array( | |
'home', | |
'about' => array( | |
'thumbnail' => '{{image-sandwich}}', | |
), | |
'contact' => array( | |
'thumbnail' => '{{image-espresso}}', | |
), | |
'blog' => array( | |
'thumbnail' => '{{image-coffee}}', | |
), | |
'homepage-section' => array( | |
'thumbnail' => '{{image-espresso}}', | |
), | |
// Custom added page Services | |
'services' => array( | |
'post_type' => 'page', | |
'post_title' => 'Services', | |
'post_content' => 'About services' | |
), | |
), | |
// ... | |
); | |
// Overriding/supplementing a predefined item plus a custom definition | |
add_theme_support( 'starter-content', array( | |
'posts' => array( | |
'about' => array( | |
// Use a page template with the predefined about page | |
'template' => 'sample-page-template.php', | |
), | |
'custom' => array( | |
'post_type' => 'post', | |
'post_title' => 'Custom Post', | |
'thumbnail' => '{{featured-image-logo}}', | |
), | |
), | |
); |
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_theme_support( 'starter-content'); |
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_theme_support( 'starter-content', array( | |
// ... | |
'theme_mods' => array( | |
'panel_1' => '{{homepage-section}}', | |
'panel_2' => '{{about}}', | |
'panel_3' => '{{blog}}', | |
'panel_4' => '{{contact}}', | |
// Custom setting | |
'page_layout' => 'one-column' | |
), | |
// ... | |
); |
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_theme_support( 'starter-content', array( | |
'widgets' => array( | |
'sidebar-1' => array( | |
'text_world' => array( | |
'text', | |
array( | |
'title' => 'Hello World', | |
'text' => 'Hello Widget', | |
) | |
), | |
'text_business_info', | |
'search', | |
'text_about', | |
), | |
// ... | |
); |
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_theme_support( 'starter-content', array( | |
'widgets' => array( | |
'sidebar-1' => array( | |
'text_business_info', | |
'search', | |
'text_about', | |
), | |
'sidebar-2' => array( | |
'text_business_info', | |
), | |
'sidebar-3' => array( | |
'text_about', | |
'search', | |
), | |
), | |
// .... | |
); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment