网络营销电子商务研究中心

网络营销电子商务研究中心 (https://www.0058.net/index.php)
-   WordPress (https://www.0058.net/forumdisplay.php?f=68)
-   -   wp首页只显示标题 (https://www.0058.net/showthread.php?t=3078)

topvip 2008-02-19 01:53 AM

wp首页只显示标题
 
Quote:

<h3 class="storytitle"><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></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...)')); ?>



改成:
Quote:

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

<?php
if ($single) {?>



<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 {//no content, nothing.
}
?>

topvip 2008-02-19 02:29 AM

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

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: ?>


All times are GMT +8. The time now is 03:41 PM.

Powered by vBulletin Version 3.8.7
Copyright ©2000 - 2026, Jelsoft Enterprises Ltd.