jmccole83
3/13/2019 - 1:28 PM

Post Query in App.php

public function clients_logos()
{
  $args = array(
    'post_type'         => 'client',
    'post_status'       => 'publish',
    'order'             => 'DESC',
  );
  $the_query = new \WP_Query( $args );

  return $the_query;
}