the news

query(‘cat=13’);
if ( $wp_query->have_posts() ) {
echo ‘

    ‘;
    while ( $wp_query->have_posts() ) {
    echo ‘

  • ‘.get_the_title().’
  • ‘;
    }
    echo ‘

‘;
}

}?>