|
本帖最后由 阿里爹地 于 2011-10-2 06:57 编辑
这个主题相信非常的出名,很多wordpress爱好者都知道!
最新版本首页默认文章显示第一段内容摘要,我现在想显示全文,可是技术比较差,删减修改了一些代码好像没用!
所以特地请教朋友们怎么办?
如果哪位童鞋帮我解决了,送本店所有视频教程!
主题下载地址:http://www.xiaohanseo.com/wp-content/uploads/2011/06/xiaohan3.zip
目前网站效果: http://www.zhuanshen1986.com/
首页index.php代码如下:- <?php
- get_header(); ?>
- <div id="container">
- <div class="content">
- <?php $options = get_option('xiaohan_options');
- $wbid=$options['notice_content'];
- query_posts("showposts=1.&cat=$wbid"); if(have_posts()) : while(have_posts()) : the_post(); ?>
- <?php if(get_post_format( $post->ID )=='aside') : ?>
- <div class="notice">
- <div class="t"><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></div>
- <div class="r"><span><?php the_time(__('m-d h:s')) ?></span><span class="com"><?php comments_popup_link('评论(<em>0</em>)', '评论(<em>1</em>)', '评论(<em>%</em>)', '评论关闭'); ?></span></div>
- </div>
- <?php endif;?>
- <?php endwhile;wp_reset_query();?>
- <?php endif;?>
- <?php query_posts("$query_string.'posts_per_page=-1'&cat=-$wbid");if(have_posts()) : while(have_posts()) : the_post(); ?>
- <?php if(is_sticky()) : ?>
- <div class="sticky" id="post-<?php the_ID(); ?>">
- <h2>[置顶] <a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
- </div>
- <?php elseif(get_post_format( $post->ID )=='') : ?>
- <div class="post" id="post-<?php the_ID(); ?>">
- <div class="date"><span><?php the_time(__('Y')) ?></span><span class="f"><?php the_time(__('m')) ?>月<?php the_time(__('j')) ?></span></div>
- <h2><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h2>
- <div class="info">
- <span class="categories"><?php the_category(','); ?></span>
- <span class="tags"><?php the_tags('', ', ', ''); ?></span>
- <?php if ($options['author']) : ?><span class="author"><?php the_author_posts_link(); ?></span><?php endif; ?>
- <?php edit_post_link(编辑, '','»'); ?>
- <span class="comments"><?php comments_popup_link('<em>0</em> Comments', '<em>1</em> Comment', '<em>%</em> Comments', 'Comments off'); ?></span>
- <div class="clear"></div>
- </div>
- <div class="intro">
- <?php if(is_category() || is_archive() || is_home() ) {
- the_excerpt();
- } else {
- the_content('Read the rest of this entry »');
- }
- ?>
- </div>
- </div>
- <?php endif; ?>
- <?php endwhile;else : ?>
- <div class="errorbox">
- <?php _e('Sorry, no posts matched your criteria.', 'xiaohan'); ?>
- </div>
- <?php endif; ?>
- <?php xiaohan_pagination($query_string); ?>
- <div class="clear"></div>
- </div><!-- #content -->
- <?php include_once("sidebar.php"); ?>
- </div><!-- #container -->
- <?php get_footer(); ?>
复制代码 |
|