get_theme_starter_content() – Expands a theme’s starter content configuration using core-provided data.

You appear to be a bot. Output may be restricted

Description

Expands a theme's starter content configuration using core-provided data.

Usage

$array = get_theme_starter_content();

Parameters

Returns

array Array of starter content.

Source

File name: wordpress/wp-includes/theme.php
Lines:

101 to 200 of 319
        '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:wordpress@example.com',
      ),
      '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' => sprintf(
          "<!-- wp:paragraph -->\n<p>%s</p>\n<!-- /wp:paragraph -->",
          _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' => sprintf(
          "<!-- wp:paragraph -->\n<p>%s</p>\n<!-- /wp:paragraph -->",
          _x( 'You might be an artist who would like to introduce yourself and your work here or maybe you are a business with a mission to describe.', 'Theme starter content' )
        ),
      ),
      'contact'          => array(
        'post_type'    => 'page',
        'post_title'   => _x( 'Contact', 'Theme starter content' ),
        'post_content' => sprintf(
          "<!-- wp:paragraph -->\n<p>%s</p>\n<!-- /wp:paragraph -->",
          _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' => sprintf(
          "<!-- wp:paragraph -->\n<p>%s</p>\n<!-- /wp:paragraph -->",
          _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' )
        ),
      ),
    ),
  );

  $content = array();
 

 View on GitHub View on Trac