Changeset 2906
- Timestamp:
- 09/23/2005 12:44:26 AM (20 years ago)
- Location:
- trunk/wp-admin
- Files:
-
- 3 edited
-
edit-form-advanced.php (modified) (1 diff)
-
post.php (modified) (1 diff)
-
wp-admin.css (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/wp-admin/edit-form-advanced.php
r2900 r2906 11 11 12 12 <div class="wrap"> 13 <h2><?php _e('Write Post'); ?></h2> 13 <a id="write-post"></a> 14 <h2><?php _e('Write Post'); ?><?php if ( 0 != $post_ID ) : ?> 15 <small class="quickjump"><a href="#preview-post"><?php _e('preview ↓'); ?></a></small><?php endif; ?></h2> 14 16 <?php 15 17 -
trunk/wp-admin/post.php
r2850 r2906 79 79 ?> 80 80 <div id='preview' class='wrap'> 81 <h2><?php _e('Post Preview (updated when post is saved)'); ?></h2> 82 <h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__("Permanent Link: %s"), get_the_title()); ?>"><?php the_title(); ?></a></h3> 83 <div class="meta"><?php _e("Filed under:"); ?> <?php the_category(','); ?> — <?php the_author() ?> @ <?php the_time() ?></div> 84 85 <div class="storycontent"> 86 <?php 87 echo apply_filters('the_content', html_entity_decode($post->post_content) ); 88 ?> 89 </div> 81 <a id="preview-post"></a> 82 <h2><?php _e('Post Preview (updated when post is saved)'); ?> <small class="quickjump"><a href="#write-post"><?php _e('edit ↑'); ?></a></small></h2> 83 <iframe src="<?php the_permalink(); ?>" width="100%" height="600" /> 90 84 </div> 91 85 <?php -
trunk/wp-admin/wp-admin.css
r2844 r2906 113 113 font: normal 30px/5px serif; 114 114 margin: 5px 10px; 115 } 116 117 h2 small.quickjump { 118 display: block; 119 text-align: right; 120 } 121 122 h2 small.quickjump a { 123 text-decoration: none; 124 border-bottom: 0; 125 font-size: 15px; 126 background: #f0f8ff; 127 padding: 5px 10px; 115 128 } 116 129
Note: See TracChangeset
for help on using the changeset viewer.