'post',
'posts_per_page' => '3', //show all => -1
'tax_query' => array(
array(
'taxonomy' => 'category',
'field' => 'slug',
'terms' => 'activitats'
)
),
'order_by' => 'meta_value', //order by meta value
'order' => 'ASC', //order ascendent
'meta_query' => array(
array( //filter results show only older than today
'key' => 'xxp_agenda_date_end',
'value' => date("Y-m-d"), // consider using date_i18n() https://developer.wordpress.org/reference/functions/date_i18n/
'compare' => '<', //show events before today
'type' => 'DATE',
)
)
)
);
?>
have_posts() ) : ?>
have_posts() ) : $the_query_archive_agenda->the_post(); ?>
'xarxaprod-convo',
'order_by' => 'meta_value', //order by meta value
'meta_key' => 'xxp_convo_apply_end', // order by meta key convo apply end
'order' => 'ASC', //order ascendent
//'posts_per_page' => '-1', //show all
'posts_per_page' => '3',
'meta_query' => array(
array( //filter results show only older than today
'key' => 'xxp_convo_apply_end',
'value' => date("Y-m-d"), // consider using date_i18n() https://developer.wordpress.org/reference/functions/date_i18n/
'compare' => '<', //show events before today
'type' => 'DATE',
)
)
)
);
?>
have_posts() ) : ?>
have_posts() ) : $the_query_archive_convo->the_post(); ?>
'post',
// 'posts_per_page' => '4', //show all => -1
// 'tax_query' => array(
// array(
// 'taxonomy' => 'category',
// 'field' => 'slug',
// 'terms' => 'convocatories'
// )
// ),
// )
// uncomment above to activate preview of pre 2024 convos
);
?>
have_posts() ) : ?>
have_posts() ) : $the_query_archive_convopre2024->the_post(); ?>