Make WordPress Core


Ignore:
Timestamp:
11/10/2021 12:44:49 AM (4 years ago)
Author:
peterwilsoncc
Message:

Taxonomy: Change some static strings to registration labels.

Add additional label options to register_taxonomy() to allow developers further flexibility for customizing the edit taxonomy screen.

Props mclaurent, swissspidy, johnbillion, jeremyescott, theMikeD, jeremyfelt, dontgo2sleep, SergeyBiryukov, audrasjb, Boniu91.
Fixes #43060.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/wp-admin/edit-tag-form.php

    r51177 r52094  
    147147            <th scope="row"><label for="name"><?php _ex( 'Name', 'term name' ); ?></label></th>
    148148            <td><input name="name" id="name" type="text" value="<?php echo $tag_name_value; ?>" size="40" aria-required="true" />
    149             <p class="description"><?php _e( 'The name is how it appears on your site.' ); ?></p></td>
     149            <p class="description"><?php echo $tax->labels->name_description; ?></p></td>
    150150        </tr>
    151151<?php if ( ! global_terms_enabled() ) { ?>
     
    169169            ?>
    170170            <td><input name="slug" id="slug" type="text" value="<?php echo esc_attr( $slug ); ?>" size="40" />
    171             <p class="description"><?php _e( 'The &#8220;slug&#8221; is the URL-friendly version of the name. It is usually all lowercase and contains only letters, numbers, and hyphens.' ); ?></p></td>
     171            <p class="description"><?php echo $tax->labels->slug_description; ?></p></td>
    172172        </tr>
    173173<?php } ?>
     
    196196                    <p class="description"><?php _e( 'Categories, unlike tags, can have a hierarchy. You might have a Jazz category, and under that have children categories for Bebop and Big Band. Totally optional.' ); ?></p>
    197197                <?php else : ?>
    198                     <p class="description"><?php _e( 'Assign a parent term to create a hierarchy. The term Jazz, for example, would be the parent of Bebop and Big Band.' ); ?></p>
     198                    <p class="description"><?php echo $tax->labels->parent_description; ?></p>
    199199                <?php endif; ?>
    200200            </td>
     
    204204            <th scope="row"><label for="description"><?php _e( 'Description' ); ?></label></th>
    205205            <td><textarea name="description" id="description" rows="5" cols="50" class="large-text"><?php echo $tag->description; // textarea_escaped ?></textarea>
    206             <p class="description"><?php _e( 'The description is not prominent by default; however, some themes may show it.' ); ?></p></td>
     206            <p class="description"><?php echo $tax->labels->description_description; ?></p></td>
    207207        </tr>
    208208        <?php
Note: See TracChangeset for help on using the changeset viewer.