Changes between Initial Version and Version 1 of Ticket #21165, comment 5
- Timestamp:
- 07/06/2012 09:23:20 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #21165, comment 5
initial v1 5 5 > }}} 6 6 7 Why not use `sprintf( _x( 'Select %s', 'taxonomy singular name' ), get_taxonomy( $current_taxonomy )->labels->singular_name );`? 7 Why not do 8 {{{ 9 #!php 10 <?php 11 sprintf( _x( 'Select %s', 'taxonomy singular name' ), get_taxonomy( $current_taxonomy )->labels->singular_name ); 12 }}}