<?php
// параметры по умолчанию
$posts = get_posts( array(
'numberposts' => 50,
'post_type' => 'group',
'publish' => true
) );
foreach( $posts as $post ){
setup_postdata($post);
// формат вывода the_title() ...
}
?>
<php the_title();?>
<?
wp_reset_postdata(); // сброс
?>