Make WordPress Core

Ticket #40932: 40932.diff

File 40932.diff, 2.7 KB (added by Presskopp, 7 years ago)
  • src/wp-admin/includes/meta-boxes.php

     
    446446        <div class="ajaxtag hide-if-no-js">
    447447                <label class="screen-reader-text" for="new-tag-<?php echo $tax_name; ?>"><?php echo $taxonomy->labels->add_new_item; ?></label>
    448448                <p><input data-wp-taxonomy="<?php echo $tax_name; ?>" type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" aria-describedby="new-tag-<?php echo $tax_name; ?>-desc" value="" />
    449                 <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" /></p>
     449                <input type="button" class="button tagadd" value="<?php esc_attr_e('&#9166;'); ?>" /></p>
    450450        </div>
    451451        <p class="howto" id="new-tag-<?php echo $tax_name; ?>-desc"><?php echo $taxonomy->labels->separate_items_with_commas; ?></p>
    452452        <?php elseif ( empty( $terms_to_edit ) ): ?>
  • src/wp-includes/class-wp-customize-control.php

     
    605605                                        <div class="new-content-item">
    606606                                                <label for="create-input-<?php echo $this->id; ?>"><span class="screen-reader-text"><?php _e( 'New page title' ); ?></span></label>
    607607                                                <input type="text" id="create-input-<?php echo $this->id; ?>" class="create-item-input" placeholder="<?php esc_attr_e( 'New page title&hellip;' ); ?>">
    608                                                 <button type="button" class="button add-content"><?php _e( 'Add' ); ?></button>
     608                                                <button type="button" class="button add-content"><?php _e( '&#9166;' ); ?></button>
    609609                                        </div>
    610610                                <?php endif;
    611611                                break;
  • src/wp-includes/class-wp-customize-nav-menus.php

     
    10071007                                        <?php if ( current_user_can( $post_type_obj->cap->create_posts ) && current_user_can( $post_type_obj->cap->publish_posts ) ) : ?>
    10081008                                                <div class="new-content-item">
    10091009                                                        <input type="text" class="create-item-input" placeholder="<?php echo esc_attr( $post_type_obj->labels->add_new_item ); ?>">
    1010                                                         <button type="button" class="button add-content"><?php _e( 'Add' ); ?></button>
     1010                                                        <button type="button" class="button add-content">
     1011                                                                <span class="screen-reader-text"><?php _e( 'Add' ); ?></span>
     1012                                                        </button>
    10111013                                                </div>
    10121014                                        <?php endif; ?>
    10131015                                <?php endif; ?>