LINK ULTIMO POST
<?php
$args = array( 'numberposts' => '1', 'category' => CAT_ID, 'post_type'=>'meditazioni', );
$recent_posts = wp_get_recent_posts( $args );
foreach( $recent_posts as $recent ){
echo '<a href="' . get_permalink($recent["ID"]) . '">
<h3><span>1</span> Gennaio</h3>
<h4>MEDITAZIONE QUOTIDIANA</h4>
<p>La Manna dell’Anima <br>lectio divina di P. Paolo Segneri</p>
</a>';
}
?>