the_content() & the_excerpt()

Display content or excerpt on blog

    <div class="container container--narrow page-section">

        <?php 
        
        while(have_posts()) {

            the_post(); ?>

            <div class="post-item">
                <h2><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h2>
                <div class="metabox">
                    <p>Posted By Admin on 6.8.17 in News</p>
                </div>
                <div class="generic-content">
                    <?php //the_content(); ?>
                    <?php the_excerpt(); ?>
                </div>
            </div>

       <?php }
        
        ?>

    </div>
Scroll to Top