Make WordPress Core

Changeset 20392


Ignore:
Timestamp:
04/07/2012 12:18:02 AM (13 years ago)
Author:
koopersmith
Message:

Theme Customizer: String change to clarify choosing a static page (remove 'select below'). see #19910.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/wp-includes/class-wp-customize.php

    r20391 r20392  
    733733        ) );
    734734
    735         $choices = array();
    736         $choices['posts'] = __( 'Your latest posts' );
    737         $choices['page'] = __( 'A static page (select below)' );
    738 
    739735        $this->add_setting( 'show_on_front', array(
    740736            'default'        => get_option( 'show_on_front' ),
     
    748744            'section' => 'static_front_page',
    749745            'type'    => 'radio',
    750             'choices' => $choices,
     746            'choices' => array(
     747                'posts' => __( 'Your latest posts' ),
     748                'page'  => __( 'A static page' ),
     749            ),
    751750        ) );
    752751
Note: See TracChangeset for help on using the changeset viewer.