当前位置:软件学习 > Word >>

在wordpress中实现分类目录下文章只显示标题

相信很多人都建立了自己的分类目录,但是wordpress默认显示文章全文,这样让读者看起来很不舒服。
 
 
 
官网上很多解决方法是
 
要在主页上只显示文章标题,可将wp-content/themes/default/index.php文件中的:
 
<h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h2>
<small><?php the_time('F jS, Y') ?> <!-- by <?php the_author() ?> --></small>
 
<div>
<?php the_content('Read the rest of this entry »'); ?>
</div>
 
<?php the_content('Read the rest of this entry »'); ?>
替换成:
 
<?php
if (is_single()) {
the_content('Read the rest of this entry »');
}
else {//no content, nothing.
}
?>
补充:综合编程 , 其他综合 ,
CopyRight © 2012 站长网 编程知识问答 www.zzzyk.com All Rights Reserved
部份技术文章来自网络,