Changeset 21944 for trunk/wp-admin/includes/meta-boxes.php
- Timestamp:
- 09/21/2012 07:34:23 PM (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/includes/meta-boxes.php
r21789 r21944 207 207 if ( !empty($post->post_date_gmt) && time() < strtotime( $post->post_date_gmt . ' +0000' ) ) : ?> 208 208 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Schedule') ?>" /> 209 <?php submit_button( __( 'Schedule' ), 'primary ', 'publish', false, array( 'accesskey' => 'p' ) ); ?>209 <?php submit_button( __( 'Schedule' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?> 210 210 <?php else : ?> 211 211 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Publish') ?>" /> 212 <?php submit_button( __( 'Publish' ), 'primary ', 'publish', false, array( 'accesskey' => 'p' ) ); ?>212 <?php submit_button( __( 'Publish' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?> 213 213 <?php endif; 214 214 else : ?> 215 215 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Submit for Review') ?>" /> 216 <?php submit_button( __( 'Submit for Review' ), 'primary ', 'publish', false, array( 'accesskey' => 'p' ) ); ?>216 <?php submit_button( __( 'Submit for Review' ), 'primary button-large', 'publish', false, array( 'accesskey' => 'p' ) ); ?> 217 217 <?php 218 218 endif; 219 219 } else { ?> 220 220 <input name="original_publish" type="hidden" id="original_publish" value="<?php esc_attr_e('Update') ?>" /> 221 <input name="save" type="submit" class="button-primary " id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" />221 <input name="save" type="submit" class="button-primary button-large" id="publish" accesskey="p" value="<?php esc_attr_e('Update') ?>" /> 222 222 <?php 223 223 } ?> … … 287 287 <div class="taghint"><?php echo $taxonomy->labels->add_new_item; ?></div> 288 288 <p><input type="text" id="new-tag-<?php echo $tax_name; ?>" name="newtag[<?php echo $tax_name; ?>]" class="newtag form-input-tip" size="16" autocomplete="off" value="" /> 289 <input type="button" class="button button-tinytagadd" value="<?php esc_attr_e('Add'); ?>" /></p>289 <input type="button" class="button tagadd" value="<?php esc_attr_e('Add'); ?>" /></p> 290 290 </div> 291 291 <p class="howto"><?php echo esc_attr( $taxonomy->labels->separate_items_with_commas ); ?></p> … … 637 637 <div id="publishing-action"> 638 638 <?php if ( !empty($link->link_id) ) { ?> 639 <input name="save" type="submit" class="button- primary" id="publish" accesskey="p" value="<?php esc_attr_e('Update Link') ?>" />639 <input name="save" type="submit" class="button-large button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Update Link') ?>" /> 640 640 <?php } else { ?> 641 <input name="save" type="submit" class="button- primary" id="publish" accesskey="p" value="<?php esc_attr_e('Add Link') ?>" />641 <input name="save" type="submit" class="button-large button-primary" id="publish" accesskey="p" value="<?php esc_attr_e('Add Link') ?>" /> 642 642 <?php } ?> 643 643 </div>
Note: See TracChangeset
for help on using the changeset viewer.