Changeset 25083
- Timestamp:
- 08/22/2013 03:23:41 PM (12 years ago)
- Location:
- trunk/src/wp-admin
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/wp-admin/edit-form-comment.php
r24052 r25083 86 86 <div id="misc-publishing-actions"> 87 87 88 <div class="misc-pub-section " id="comment-status-radio">88 <div class="misc-pub-section misc-pub-comment-status" id="comment-status-radio"> 89 89 <label class="approved"><input type="radio"<?php checked( $comment->comment_approved, '1' ); ?> name="comment_status" value="1" /><?php /* translators: comment type radio button */ _ex('Approved', 'adjective') ?></label><br /> 90 90 <label class="waiting"><input type="radio"<?php checked( $comment->comment_approved, '0' ); ?> name="comment_status" value="0" /><?php /* translators: comment type radio button */ _ex('Pending', 'adjective') ?></label><br /> … … 92 92 </div> 93 93 94 <div class="misc-pub-section curtime ">94 <div class="misc-pub-section curtime misc-pub-curtime"> 95 95 <?php 96 96 // translators: Publish box date format, see http://php.net/date -
trunk/src/wp-admin/includes/media.php
r25025 r25083 2434 2434 $att_url = wp_get_attachment_url( $post->ID ); 2435 2435 ?> 2436 <div class="misc-pub-section ">2436 <div class="misc-pub-section misc-pub-attachment"> 2437 2437 <label for="attachment_url"><?php _e( 'File URL:' ); ?></label> 2438 2438 <input type="text" class="widefat urlfield" readonly="readonly" name="attachment_url" value="<?php echo esc_attr($att_url); ?>" /> 2439 2439 </div> 2440 <div class="misc-pub-section ">2440 <div class="misc-pub-section misc-pub-filename"> 2441 2441 <?php _e( 'File name:' ); ?> <strong><?php echo $filename; ?></strong> 2442 2442 </div> 2443 <div class="misc-pub-section ">2443 <div class="misc-pub-section misc-pub-filetype"> 2444 2444 <?php _e( 'File type:' ); ?> <strong><?php 2445 2445 if ( preg_match( '/^.*?\.(\w+)$/', get_attached_file( $post->ID ), $matches ) ) … … 2462 2462 foreach ( $fields as $key => $label ): 2463 2463 if ( ! empty( $meta[$key] ) ) : ?> 2464 <div class="misc-pub-section ">2464 <div class="misc-pub-section misc-pub-mime-meta"> 2465 2465 <?php echo $label ?> <strong><?php echo esc_html( $meta[$key] ); ?></strong> 2466 2466 </div> … … 2470 2470 2471 2471 if ( ! empty( $meta['bitrate'] ) ) : ?> 2472 <div class="misc-pub-section ">2472 <div class="misc-pub-section misc-pub-bitrate"> 2473 2473 <?php _e( 'Bitrate:' ); ?> <strong><?php 2474 2474 echo round( $meta['bitrate'] / 1000 ), 'kb/s'; … … 2489 2489 foreach ( $audio_fields as $key => $label ): 2490 2490 if ( ! empty( $meta['audio'][$key] ) ) : ?> 2491 <div class="misc-pub-section ">2491 <div class="misc-pub-section misc-pub-audio"> 2492 2492 <?php echo $label; ?> <strong><?php echo esc_html( $meta['audio'][$key] ); ?></strong> 2493 2493 </div> … … 2499 2499 2500 2500 if ( $media_dims ) : ?> 2501 <div class="misc-pub-section ">2501 <div class="misc-pub-section misc-pub-dimensions"> 2502 2502 <?php _e( 'Dimensions:' ); ?> <strong><?php echo $media_dims; ?></strong> 2503 2503 </div> -
trunk/src/wp-admin/includes/meta-boxes.php
r25035 r25083 56 56 <div id="misc-publishing-actions"> 57 57 58 <div class="misc-pub-section "><label for="post_status"><?php _e('Status:') ?></label>58 <div class="misc-pub-section misc-pub-post-status"><label for="post_status"><?php _e('Status:') ?></label> 59 59 <span id="post-status-display"> 60 60 <?php … … 106 106 </div><!-- .misc-pub-section --> 107 107 108 <div class="misc-pub-section " id="visibility">108 <div class="misc-pub-section misc-pub-visibility" id="visibility"> 109 109 <?php _e('Visibility:'); ?> <span id="post-visibility-display"><?php 110 110 … … 175 175 $revisions_to_keep = wp_revisions_to_keep( $post ); 176 176 ?> 177 <div class="misc-pub-section num-revisions">177 <div class="misc-pub-section misc-pub-revisions"> 178 178 <?php 179 179 if ( $revisions_to_keep > 0 && $revisions_to_keep <= $args['args']['revisions_count'] ) { … … 191 191 192 192 if ( $can_publish ) : // Contributors don't get to choose the date of publish ?> 193 <div class="misc-pub-section curtime ">193 <div class="misc-pub-section curtime misc-pub-curtime"> 194 194 <span id="timestamp"> 195 195 <?php printf($stamp, $date); ?></span> … … 279 279 $date = date_i18n( $datef, strtotime( $post->post_date ) ); 280 280 ?> 281 <div class="misc-pub-section curtime ">281 <div class="misc-pub-section curtime misc-pub-curtime"> 282 282 <span id="timestamp"><?php printf($stamp, $date); ?></span> 283 283 </div><!-- .misc-pub-section --> … … 703 703 704 704 <div id="misc-publishing-actions"> 705 <div class="misc-pub-section ">705 <div class="misc-pub-section misc-pub-private"> 706 706 <label for="link_private" class="selectit"><input id="link_private" name="link_visible" type="checkbox" value="N" <?php checked($link->link_visible, 'N'); ?> /> <?php _e('Keep this link private') ?></label> 707 707 </div> -
trunk/src/wp-admin/includes/template.php
r24994 r25083 1910 1910 $content .= '<p>' . __( 'View, compare, and restore other versions of this content on the improved revisions screen.' ) . '</p>'; 1911 1911 1912 self::print_js( 'wp360_revisions', '.misc-pub-section. num-revisions', array(1912 self::print_js( 'wp360_revisions', '.misc-pub-section.misc-pub-revisions', array( 1913 1913 'content' => $content, 1914 1914 'position' => array( 'edge' => is_rtl() ? 'left' : 'right', 'align' => 'center', 'my' => is_rtl() ? 'left' : 'right-14px' ),
Note: See TracChangeset
for help on using the changeset viewer.