Changeset 20392
- Timestamp:
- 04/07/2012 12:18:02 AM (13 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-includes/class-wp-customize.php
r20391 r20392 733 733 ) ); 734 734 735 $choices = array();736 $choices['posts'] = __( 'Your latest posts' );737 $choices['page'] = __( 'A static page (select below)' );738 739 735 $this->add_setting( 'show_on_front', array( 740 736 'default' => get_option( 'show_on_front' ), … … 748 744 'section' => 'static_front_page', 749 745 'type' => 'radio', 750 'choices' => $choices, 746 'choices' => array( 747 'posts' => __( 'Your latest posts' ), 748 'page' => __( 'A static page' ), 749 ), 751 750 ) ); 752 751
Note: See TracChangeset
for help on using the changeset viewer.