Make WordPress Core

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


Ignore:
Timestamp:
07/06/2012 09:23:20 AM (12 years 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}}}