test
// WP_Query arguments
$args = array(
'post_type' => array( 'programa_electoral' ),
);
// The Query
$query_programa_electoral_by_cat = new WP_Query( $args );
// The Loop
if ( $query_programa_electoral_by_cat->have_posts() ) {
while ( $query_programa_electoral_by_cat->have_posts() ) {
$query_programa_electoral_by_cat->the_post();
// do something
}
} else {
// no posts found
}
// Restore original Post Data
wp_reset_postdata();