Advertisement
campusboy

Untitled

Jul 23rd, 2019
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.23 KB | None | 0 0
  1. $authors = $wpdb->get_results( "
  2.    SELECT ID, post_title, post_status
  3.    FROM $wpdb->posts
  4.    WHERE 1=1
  5.    AND post_type = 'authors'
  6.    AND (post_status = 'publish' OR post_status = 'draft')
  7.    ORDER BY post_date DESC
  8. " );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement