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

  • This topic is empty.
Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #38822
    johnjf
    Member

    Hello I know this might be simple but I just wanted to know how I can achieve my posts to show up in separate Div’s example:

    http://4.bp.blogspot.com/-xCvv01qojdI/TsIo_V9-p1I/AAAAAAAAAR8/1W10RzA3zdc/s1600/PreviewImage.jpg

    #148918
    ayesha
    Participant

    mypost1

    #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; ?>
    
    #149105
    ayesha
    Participant

    Thanks.It works fine.

    #149150
    ayesha
    Participant

    After putting any image in post, image comes out of the box. boxheight is not incraesing accordingly.Help me.

Viewing 5 posts - 1 through 5 (of 5 total)
  • The forum ‘Back End’ is closed to new topics and replies.