21# usbiz
去掉首页中的这些内容就可以了。
- <!-- 最新文章列表 开始 -->
- <div class="entry">
- <h4>文章列表</h4>
- <?php if (have_posts()) : ?>
- <?php while (have_posts()) : the_post(); ?>
- <div class="post" id="post-<?php the_ID(); ?>" onmouseover="this.className='post post_border'" onmouseout="this.className='post'">
- <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="ermanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2>
- <div class="small_desc"><?php the_author_posts_link(); ?> 发表于 <?php the_time('Y-m-d H:i'); ?> 阅读:<?php if(function_exists('the_views')) { the_views(); } ?></div>
- <div class="postbg"><?php the_content(''); ?></div>
- <div class="postother">
- 分类: <?php the_category(', ') ?> | 评论数: <?php comments_popup_link('0 ', '1 ', '% '); ?> | <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title(); ?>"><strong class="f14px">阅读全文</strong></a>
- </div>
- </div>
- <?php endwhile; ?>
- <?php else : ?>
- <!-- 无文章提示 -->
- <div class="post">
- <h2 class="center search">抱歉,没有找到合适的文章.</h2>
- <p class="center">请您<a href="<?php echo get_settings('home'); ?>">返回首页<?php echo $langblog;?></a>或在搜索中查找您所需的信息.带来不便,敬请谅解!</p>
- </div>
- <?php endif; ?>
- </div>
- <!-- 最新文章列表 结束 -->
复制代码 |