<?php
$args = array(
'post_parent' => $post->ID, // страницы, родителем которых является текущая страница
'post_type' => 'page', // тип - страница
'numberposts' => -1, // получить все
'orderby' => 'ID',
'post_status' => 'publish'
);
$myposts = get_posts( $args );
foreach( $myposts as $post ){ setup_postdata($post);
?>
<div class="col-md-4 col-sm-6 text-center">
<div class="item" id="special-block">
<div class="image">
<img src="<?php echo get_template_directory_uri();?>/img/items-bg.png" alt="<?php single_post_title() ?>">
</div>
<h3><a href="<? the_permalink();?>" class='h-link'><? the_title();?></a></h3>
</div>
</div>
<?php
}
wp_reset_postdata(); // сброс
?>
"Вчера" не актуально...