I am trying to create a custom loop from the metadata I have entered into the posts. <?php $args = array ( 'post_type' => array( 'movies' ), 'order' => 'DESC', 'order_by' => 'get_post_meta( get_the_ID(), "released", true )', ); $query = new WP_Query( $args ); if ( $query->have_posts() ) : bd_pagination(); while ( $query->have_posts() ) : … Continue reading custom post type loop not working
The post custom post type loop not working appeared first on Clan VPS Host.