Imprensa
$projetos = new WP_Query(
array(
'post_type' => 'imprensa',
'orderby' => 'ASC'
)
);
?>
if ($projetos->have_posts()) : while ($projetos->have_posts()) : $projetos->the_post(); ?>
$postid = get_the_ID();
$img = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' );
$titulo = get_the_title();
$resumo = get_the_excerpt();
$link = get_permalink();
//$dataevento = get_post_meta( $postid, 'data_do_evento', true ) ;
//$galeriadefotos = get_post_meta( $postid, 'galeria_de_fotos', true ) ;
?>
endwhile; endif; wp_reset_postdata(); ?>