How to display thumbnail + tags + title of a child page?
Assuming that you’ve enabled support for both post thumbnails and post tags for static Pages, I would use WP_Query() to build your query, and do something like the following: global $post; $child_pages_query_args = array( ‘post_type’ => ‘page’, ‘post_parent’ => $post->ID, ‘orderby’ => ‘menu_order’ ); $child_pages = new WP_Query( $child_pages_query_args ); if ( $child_pages->have_posts() ) : … Read more