Make WordPress Core

Changeset 26361


Ignore:
Timestamp:
11/24/2013 04:56:07 PM (11 years ago)
Author:
lancewillett
Message:

Twenty Fourteen: update Customizer inline help text. Props siobhan, see #25837.

Location:
trunk/src/wp-content/themes/twentyfourteen/inc
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-content/themes/twentyfourteen/inc/customizer.php

    r26260 r26361  
    4141    $wp_customize->add_section( 'featured_content', array(
    4242        'title'       => __( 'Featured Content', 'twentyfourteen' ),
    43         'description' => sprintf( __( 'Easily feature all posts with the <a href="%1$s">"featured" tag</a> or a tag of your choice; if no posts match the tag, <a href="%2$s">"sticky" posts</a> will be displayed instead.', 'twentyfourteen' ), admin_url( '/edit.php?tag=featured' ), admin_url( '/edit.php?show_sticky=1' ) ),
     43        'description' => sprintf( __( 'Use a <a href="%1$s"> tag</a> to feature your posts. If no posts match the tag, <a href="%2$s">sticky posts</a> will be displayed instead.', 'twentyfourteen' ), admin_url( '/edit.php?tag=featured' ), admin_url( '/edit.php?show_sticky=1' ) ),
    4444        'priority'    => 130,
    4545    ) );
  • trunk/src/wp-content/themes/twentyfourteen/inc/featured-content.php

    r26270 r26361  
    353353        $wp_customize->add_section( 'featured_content', array(
    354354            'title'          => __( 'Featured Content', 'twentyfourteen' ),
    355             'description'    => sprintf( __( 'Easily feature all posts with the <a href="%1$s">"featured" tag</a> or a tag of your choice; if no posts match the tag, <a href="%2$s">"sticky" posts</a> will be displayed instead.', 'twentyfourteen' ), admin_url( '/edit.php?tag=featured' ), admin_url( '/edit.php?show_sticky=1' ) ),
     355            'description'    => sprintf( __( 'Use the <a href="%1$s">"featured" tag</a> to feature your posts. You can change this to a tag of your choice; if no posts match the tag, <a href="%2$s">sticky posts</a> will be displayed instead.', 'twentyfourteen' ), admin_url( '/edit.php?tag=featured' ), admin_url( '/edit.php?show_sticky=1' ) ),
    356356            'priority'       => 130,
    357357            'theme_supports' => 'featured-content',
     
    372372        // Add Featured Content controls.
    373373        $wp_customize->add_control( 'featured-content[tag-name]', array(
    374             'label'    => __( 'Tag name', 'twentyfourteen' ),
     374            'label'    => __( 'Tag Name', 'twentyfourteen' ),
    375375            'section'  => 'featured_content',
    376376            'priority' => 20,
    377377        ) );
    378378        $wp_customize->add_control( 'featured-content[hide-tag]', array(
    379             'label'    => __( 'Hide tag from displaying in post meta and tag clouds.', 'twentyfourteen' ),
     379            'label'    => __( 'Don&rsquo;t display tag on front end.', 'twentyfourteen' ),
    380380            'section'  => 'featured_content',
    381381            'type'     => 'checkbox',
Note: See TracChangeset for help on using the changeset viewer.