Make WordPress Core


Ignore:
Timestamp:
03/31/2007 10:02:19 PM (17 years ago)
Author:
matt
Message:

Kill the slow-loading iframe in favor of a popup link

File:
1 edited

Legend:

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

    r5056 r5159  
    132132
    133133<fieldset id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>">
    134     <legend><?php _e('Page Content') ?></legend>
     134<legend><?php _e('Page Content') ?>
     135
     136<?php if ( 'publish' == $post->post_status ) { ?>
     137<a href="<?php echo clean_url(get_permalink($post->ID)); ?>" style="position: absolute; right: 2em; margin-right: 19em; text-decoration: underline;" target="_blank"><?php _e('View &raquo;'); ?></a>
     138<?php } elseif ( 'edit' == $action ) { ?>
     139<a href="<?php echo clean_url(apply_filters('preview_post_link', add_query_arg('preview', 'true', get_permalink($post->ID)))); ?>" style="position: absolute; right: 2em; margin-right: 19em; text-decoration: underline;" target="_blank"><?php _e('Preview &raquo;'); ?></a>
     140<?php } ?>
     141</legend>
    135142    <?php the_editor($post->post_content); ?>
    136143</fieldset>
Note: See TracChangeset for help on using the changeset viewer.