Services

$post_parent, 'post_type' => $post_type, 'numberposts' => $num_of_posts, 'post_status' => $post_status, 'orderby' => 'menu_order', 'order' => 'ASC'); $parents = get_children($args); foreach ($parents as $parent) { $postid = $parent->ID; echo "
"; echo "

" . $parent->post_title . "

" . $parent->post_content. "
" . get_the_post_thumbnail($postid, 'large') . "
"; } ?>