get_posts in meta box dropdown not showing latest posts
Try WP_Query to get the posts, since get_posts() also makes use of it: $args = array( ‘category_name’ => ‘product-videos’, ‘posts_per_page’ => 5000, // or -1 if you want all ‘offset’ => 1 ); $the_query = new WP_Query( $args ); if ( $the_query->have_posts() ) : while ( $the_query->have_posts() ): $the_query->the_post(); ?> <option value=”<?php the_ID(); ?>” <?php … Read more