Advertisement
rmlumley

eventcalendar query

Jun 13th, 2014
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.26 KB | None | 0 0
  1. <?php
  2. $mpdb = new wpdb('username', 'password', 'database', 'localhost');
  3. $posttitles = $mpdb->get_col( "SELECT post_title FROM wp_posts WHERE post_type = 'tribe_events'" );
  4.  
  5. echo "The titles are ";
  6.  
  7. foreach ( $posttitles as $title )
  8. {
  9.     echo $title;
  10. }
  11. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement