mirror of
https://github.com/WordPress/WordPress.git
synced 2024-11-02 16:59:35 +01:00
75ca249558
This ensures that widgets are mapped correctly and is consistent with the previous default themes. See https://github.com/WordPress/twentytwenty/issues/481. Reverts [46282]. Props ocean90, garrett-eclipse, desrosj, SergeyBiryukov. See #48110. Built from https://develop.svn.wordpress.org/trunk@46283 git-svn-id: http://core.svn.wordpress.org/trunk@46095 1a063a9b-81f0-0310-95a4-ce76da25c4cd
92 lines
2.3 KiB
PHP
92 lines
2.3 KiB
PHP
<?php
|
|
/**
|
|
* Twenty Twenty Starter Content
|
|
*
|
|
* @link https://make.wordpress.org/core/2016/11/30/starter-content-for-themes-in-4-7/
|
|
*
|
|
* @package WordPress
|
|
* @subpackage Twenty_Twenty
|
|
* @since 1.0.0
|
|
*/
|
|
|
|
/**
|
|
* Function to return the array of starter content for the theme.
|
|
*
|
|
* Passes it through the `twentytwenty_starter_content` filter before returning.
|
|
*
|
|
* @since Twenty Twenty 1.0.0
|
|
* @return array a filtered array of args for the starter_content.
|
|
*/
|
|
function twentytwenty_get_starter_content() {
|
|
|
|
// Define and register starter content to showcase the theme on new sites.
|
|
$starter_content = array(
|
|
'widgets' => array(
|
|
// Place one core-defined widgets in the first tooter widget area.
|
|
'sidebar-1' => array(
|
|
'text_about',
|
|
),
|
|
// Place one core-defined widgets in the second tooter widget area.
|
|
'sidebar-2' => array(
|
|
'text_business_info',
|
|
),
|
|
),
|
|
|
|
// Specify the core-defined pages to create and add custom thumbnails to some of them.
|
|
'posts' => array(
|
|
'home',
|
|
'about',
|
|
'contact',
|
|
'blog',
|
|
),
|
|
|
|
// Default to a static front page and assign the front and posts pages.
|
|
'options' => array(
|
|
'show_on_front' => 'page',
|
|
'page_on_front' => '{{home}}',
|
|
'page_for_posts' => '{{blog}}',
|
|
),
|
|
|
|
// Set up nav menus for each of the two areas registered in the theme.
|
|
'nav_menus' => array(
|
|
// Assign a menu to the "primary" location.
|
|
'primary' => array(
|
|
'name' => __( 'Primary', 'twentytwenty' ),
|
|
'items' => array(
|
|
'page_contact',
|
|
),
|
|
),
|
|
// Assign a menu to the "expanded" (modal) menu location.
|
|
'expanded' => array(
|
|
'name' => __( 'Primary', 'twentytwenty' ),
|
|
'items' => array(
|
|
'link_home', // Note that the core "home" page is actually a link in case a static front page is not used.
|
|
'page_about',
|
|
'page_blog',
|
|
),
|
|
),
|
|
// Assign a menu to the "social" location.
|
|
'social' => array(
|
|
'name' => __( 'Social Links Menu', 'twentytwenty' ),
|
|
'items' => array(
|
|
'link_yelp',
|
|
'link_facebook',
|
|
'link_twitter',
|
|
'link_instagram',
|
|
'link_email',
|
|
),
|
|
),
|
|
),
|
|
);
|
|
|
|
/**
|
|
* Filters Twenty Twenty array of starter content.
|
|
*
|
|
* @since Twenty Twenty 1.0.0
|
|
*
|
|
* @param array $starter_content Array of starter content.
|
|
*/
|
|
return apply_filters( 'twentytwenty_starter_content', $starter_content );
|
|
|
|
}
|