View Single Post
  #2   IP: 222.76.215.18
Old 2008-02-19, 02:29 AM
topvip topvip is offline
超级版主
 
Join Date: 2006-01-04
Posts: 1206
topvip 正向着好的方向发展
Default

更好的代码如下,首页不为标题,内页是标题:

Quote:
<div class="post" id="post-<?php the_ID(); ?>">


<?php
if ($single) {

echo "<h3 class='storytitle'><a href="?><?php the_permalink() ?> <?php echo "rel='bookmark'>" ?><?php the_title(); ?><?php echo "</a></h3>" ?>

<div class="meta"><?php _e("Filed under:"); ?> <?php the_category(',') ?> — <?php the_tags(__('Tags: '), ', ', ' — '); ?> <?php the_author() ?> * <?php the_time() ?> <?php edit_post_link(__('Edit This')); ?></div>

<div class="storycontent">
<?php the_content(__('(more...)')); ?>
</div>
<?php }
else {

echo "<a href="?><?php the_permalink() ?> <?php echo "rel='bookmark'>"?><?php the_title(); ?><?php echo "</a>";
}
?>




</div>

<?php endwhile; else: ?>
Reply With Quote