$my_post_id, ) ); /** ------------------------------ QUERIES ------------------------------*/ // ##### Query 🡒 Get posts $args = array('fields' => 'ids'); $posts = get_posts($args); // ##### Query 🡒 Recent posts $posts = wp_get_recent_posts([ 'numberposts' => 4 , 'post_status' => 'publish' ]); // ##### Query 🡒 With Metaqueries $args = array( 'post_type'=>'activities', 'post_status' => array( 'publish', 'future' ), 'numberposts' => '3', 'meta_key' => 'date', 'orderby' => 'meta_value', 'order' => 'ASC', // ######## Main 'meta_query' => array( array( 'key' => 'date', 'value' => $today, 'compare' => '>=' ) ) ); $recent_activites = wp_get_recent_posts($args); // ##### Query 🡒 Wordpress Global Query Loop $args = array('posts_per_page' => 6,'post_type' => 'post'); $the_query = new WP_Query( $args ); if ( $the_query->have_posts() ) { echo '