Hello,
I reply to this my old post hoping that i can fix this issue with my website.
Thanks Sallie for her previous response, i know i could use a child theme but before doing that i would better understand if i am doing right.
Imagine that i want to recall in this page ONLY some posts based on their slug.
Is the following code working as expected (look at the first post to see the original code):
// The Query
$args = array(
‘post_type’ => ‘destination’,
‘posts_per_page’ => 24,
‘orderby’ => array( ‘menu_order’ => ‘ASC’, ‘parent’ => ‘ASC’, ‘title’ => ‘ASC’ ),
‘name’ => ‘africa’
‘name’ => ‘Europe’
‘name’ => ‘Italy’
‘name’ => ‘asia’
‘name’ => ‘america’
);
$args = is_destination_archive( $args );
$the_query = new WP_Query( $args );
Is that simple?
Thanks a lot.
Bye