Eklediğin koddan örnek vermek gerekirse;
$args = array(
'numberposts' => '10',
'post_status' => 'publish',
'category__in' => array(1,2),
);
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '
  • ' . $recent["post_title"].'
  • ';
    }
    ?>