WordPress.org

Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #21165, comment 5

Timestamp:
07/06/12 09:23:20 (12 months ago)
Author:
kobenland
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #21165, comment 5

    initial v1  
    55> }}} 
    66 
    7 Why not use `sprintf( _x( 'Select %s', 'taxonomy singular name' ), get_taxonomy( $current_taxonomy )->labels->singular_name );`? 
     7Why not do 
     8{{{ 
     9#!php 
     10<?php 
     11sprintf( _x( 'Select %s', 'taxonomy singular name' ), get_taxonomy( $current_taxonomy )->labels->singular_name ); 
     12}}}