Changeset 1112
- Timestamp:
- 04/21/04 04:12:55 (4 years ago)
- Files:
-
- trunk/index.php (modified) (1 diff)
- trunk/wp-admin/post.php (modified) (1 diff)
- trunk/wp-includes/template-functions-links.php (modified) (1 diff)
- trunk/wp-rss2.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/index.php
r1081 r1112 37 37 38 38 <div class="post"> 39 <h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h3>39 <h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a></h3> 40 40 <div class="meta"><?php _e("Filed under:"); ?> <?php the_category() ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div> 41 41 trunk/wp-admin/post.php
r1108 r1112 249 249 <div id='preview' class='wrap'> 250 250 <h2><?php _e('Post Preview (updated when post is saved)'); ?></h2> 251 <h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php echo get_permalink() ?>" rel="bookmark" title="<?php printf(__("Permanent Link: %s"), the_title()); ?>"><?php the_title(); ?></a></h3>251 <h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="<?php printf(__("Permanent Link: %s"), the_title()); ?>"><?php the_title(); ?></a></h3> 252 252 <div class="meta"><?php printf(__("Filed under: %s"), the_category()); ?> — <?php the_author() ?> @ <?php the_time() ?> <?php edit_post_link(); ?></div> 253 253 trunk/wp-includes/template-functions-links.php
r999 r1112 1 1 <?php 2 3 function the_permalink() { 4 echo get_permalink(); 5 } 2 6 3 7 function permalink_anchor($mode = 'id') { trunk/wp-rss2.php
r1098 r1112 33 33 <pubDate><?php echo mysql2date('D, d M Y H:i:s +0000', $post->post_date_gmt); ?></pubDate> 34 34 <?php the_category_rss() ?> 35 <guid><?php echo get_permalink($id); ?></guid>35 <guid><?php the_permalink($id); ?></guid> 36 36 <?php $more = 1; if (get_settings('rss_use_excerpt')) { 37 37 ?>
