How to show full post?

时间:2014-04-09 作者:bear

我正在使用this theme 我的杂志网站。我无法在博客端显示完整内容。我尝试在php中更改为show_content 但它不起作用。有没有关于如何解决这个问题的建议

这是页面代码:

<?php 
/* Template Name: Home 5 */
?>

<?php get_header(); ?>

<!--<home 5>-->

<!--<div tm_category 0>-->
<div class="tm_category_0">
<!--</div tm_middle 0>-->

    <!--<category name>-->
    <div class="tm_cat_metatitle">
        <h1>
            <i class="icon-reorder"></i> 
             Recent Posts           
        </h1> 
        <div class="tm_cat_arrow"></div>
    </div>
    <!--</category name>-->

    <!--<tm_category_file>-->
    <div class="tm_category_file">
        <div class="tm_category_box_home5">

        <?php if ( have_posts() ) : ?>

            <!--<the loop>-->
            <?php $wp_query = new WP_Query( array( 
                                                "cat" => "", 
                                                "posts_per_page" => "", 
                                                "post_type" => "post",
                                                "paged" => get_query_var(\'paged\') ? get_query_var(\'paged\') : 1
                                                )                                               
                                        );
            while( $wp_query->have_posts() ) : $wp_query->the_post(); ?>

            <div <?php post_class(); ?>>

                <!--<cat title>-->
                <div class="tm_catpost_titles">
                        <a href="<?php the_permalink() ?>" title="<?php the_title_attribute(); ?>">
                            <h1 class="tmpost-<?php the_ID(); ?>">
                            <?php $tit = the_title(\'\',\'\',FALSE); echo substr($tit, 0, 150); if (strlen($tit) > 150) echo " ..."; ?>
                            </h1>
                        </a>
                </div>
                <!--</cat title>-->     

                <!--<cat item>-->
                <div class="tm_cat_item">
                    <div class="tmpost-<?php the_ID(); ?>-item">

                        <div class="tm_catpost_item_1">
                        <i class="icon-user"></i> 
                        <?php _e(\'By\', \'tm_myid_text\'); ?> <?php the_author(); ?>
                        </div>

                        <div class="tm_catpost_item_2">
                        <i class="icon-tag"></i> 
                        In <?php $category = get_the_category(); echo $category[0]->cat_name; ?>
                        </div>

                        <div class="tm_catpost_item_3">
                        <i class="icon-calendar"></i>
                        <?php the_time(\'M jS, Y\') ?>
                        </div>

                        <div class="tm_catpost_item_4">
                        <i class="icon-comments"></i> 
                        <?php comments_number(__(\'0 Comments\', \'tm_myid_text\'), __(\'1 Comment\', \'tm_myid_text\'), __( \'% Comments\', \'tm_myid_text\') );?>
                        </div>

                        <div class="tm_catpost_item_5">
                        <i class="icon-eye-open"></i> 
                        <?php echo tm_viewcounter_display(get_the_ID()); ?>
                        </div>

                    </div>
                </div>
                <!--</cat item>-->

                <!--<cat image>-->
                <div class="tm_cat_image">
                <?php if (has_post_thumbnail()) { ?>
                    <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>">
                    <?php the_post_thumbnail( \'Full\' ); ?>
                    </a>
                <?php } else { ?>
                <?php } ?>
                </div>
                <!--</cat image>-->

                <div class="tm_cat_desc_home5">
                    <div class="tmpost-desc">
                    <?php echo excerpt(500); ?> 
                    </div>

                    <div class="tm_cat_readmore">
                        <div class="tmpost-readmore">
                            <a href="<?php the_permalink() ?>">
                                <i class="icon-file-text"></i> 
                                <?php _e(\'Kommentera\', \'tm_myid_text\'); ?>
                            </a>
                            <div class="tmpost-readmore_list"></div>
                        </div>
                    </div>

                </div>

            </div>

            <?php endwhile; ?>
            <!--</the loop>-->

        </div>
    </div>
    <!--</tm_category_file>-->

    <!--<tm pagination>-->
    <div id="Nav">
        <div class="tm_navigation">
        <?php echo tm_pagination_nav(); ?>
        </div>
    </div>
    <!--</tm pagination>-->

        <?php else : ?>
        <?php endif; ?>

</div>

<!--</home left>-->
<?php get_template_part( \'sidebar_left\' ); ?>
<!--</home left>-->
<!--</home 5>-->

<?php get_footer(); ?>

1 个回复
最合适的回答,由SO网友:Pieter Goosen 整理而成

Wordpress没有功能show_content. wordpress中的内容使用the_content(). 摘录显示为使用the_excerpt(). 请注意,移动WP_Query 在您的if 声明和更改if ( have_posts() )if ( $wp_query->have_posts() )

结束