Changeset 26361
- Timestamp:
- 11/24/2013 04:56:07 PM (11 years ago)
- 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 41 41 $wp_customize->add_section( 'featured_content', array( 42 42 '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' ) ), 44 44 'priority' => 130, 45 45 ) ); -
trunk/src/wp-content/themes/twentyfourteen/inc/featured-content.php
r26270 r26361 353 353 $wp_customize->add_section( 'featured_content', array( 354 354 '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' ) ), 356 356 'priority' => 130, 357 357 'theme_supports' => 'featured-content', … … 372 372 // Add Featured Content controls. 373 373 $wp_customize->add_control( 'featured-content[tag-name]', array( 374 'label' => __( 'Tag name', 'twentyfourteen' ),374 'label' => __( 'Tag Name', 'twentyfourteen' ), 375 375 'section' => 'featured_content', 376 376 'priority' => 20, 377 377 ) ); 378 378 $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’t display tag on front end.', 'twentyfourteen' ), 380 380 'section' => 'featured_content', 381 381 'type' => 'checkbox',
Note: See TracChangeset
for help on using the changeset viewer.