Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End WordPress posts in separate boxes Reply To: WordPress posts in separate boxes

#149015
sayedtaqui
Participant

Use WordPress loop

<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
                    <h2 ><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h2>
                <?php the_excerpt(); ?>
            <?php endwhile; endif; ?>