2012-01-24 35 views
0

我正在与我很久以前支付的一个主题,定制一堆图形和CSS,并通过它将其片段通过单独的目录通过iFrame Fancybox。试图编辑'博客'模板,以显示完整的文章不摘录

,但我试图重新格式化博客模板 - 当作为更新目前它呈现并填充:

标题
等等等等
内容的几行这里/然后中旬裁员句子。
查看更多等//这些链接只是刷新页面?

所以,我有点新手用PHP &想知道我是怎么想编辑下面的“博客模板”的代码,以便充分帖子的文字显示,那些在中间切断未摘录:

<?php 
/* 
Template Name: Blog Template 
*/ 
get_header(); 
?>   
      <div id="content"> 

       <?php 
        //get exclusions for categories 
        $exclude = get_option($shortname.'_exclude_categories');     
        $exclude = str_replace(',,','|-',$exclude); 
        $exclude = str_replace(',','-',$exclude); 
        $exclude = substr($exclude, 0, -1); 
        $exclude = str_replace('|',',',$exclude); 

        query_posts('posts_per_page=&paged='.$paged.'&cat='.$exclude); 
        if(have_posts()) : while(have_posts()) : the_post(); 
       ?>  

       <div class="entry" id="post-<?php the_ID(); ?>"> 
        <h1><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title_attribute(); ?>"><?php the_title(); ?></a></h1> 
        <p class="meta">Added by <?php the_author_posts_link() ?> on <a href="<?php echo get_month_link($get_year, $get_month); ?>"><?php the_time('F jS, Y') ?></a>, filed under <?php the_category(', ') ?></p> 

        <div class="entry-content"> 
         <p><?php the_post_thumbnail('wide'); ?></p> 
         <?php the_excerpt('Read the rest of this entry &raquo;'); ?> 
         <p><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?> <a href="<?php the_permalink() ?>">~ Add your thoughts</a> | <a href="<?php the_permalink() ?>">Continue Reading</a></p> 
        </div><!-- e: entry content --> 
       </div><!-- e: entry --> 

       <?php 
        endwhile; 
        //endif; 
       ?> 

       <div class="paginate"> 
        <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } ?> 
       </div> 

       <?php else : ?> 

       <h2 class="center">Not Found</h2> 
       <p class="center">Sorry, but you are looking for something that isn't here.</p> 
       <?php get_search_form(); ?> 

       <?php endif; ?> 

      </div><!-- e: content --> 

<?php get_sidebar(); ?> 

<?php get_footer(); ?> 

回答

3

将the_excerpt()替换为the_content(),就是这样。