Display Child Pages, title and excerpt on to homepage
-
I would like to do something like shown below, but don’t know the proper code. I basically want to pull the title and excerpt of child pages and display it on the homepage. I want to be able to list them going from left to right in <div> tags, and not just a laundry list which is why I would have the loop stop and start again. I’m pretty new to WP, so any help would be much appreciated, thanks!
<?php get_page_children( $page_id=37, $pages )?> <h3><?php the_title(); ?></h3> <?php the_content(); ?> endwhile; wp_reset_postdata(); <h3><?php the_title(); ?></h3> <?php the_content(); ?> endwhile; wp_reset_postdata();
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘Display Child Pages, title and excerpt on to homepage’ is closed to new replies.