I want to replace the post title with seo title if it exists
I would like to include $wpdb->wp_postmeta.meta_value WHERE $wpdb->wp_postmeta.meta_key = aioseop_title in the query below.
What I'm unsure about is what code to use to find if it exists or not.
For some posts, there is no aioseop_title.
Ideally, I'd like to list the post_title everytime, and include the $wpdb->wp_postmeta.metavalue if the meta_key = aioseop_title for each post.
What this is doing: Below it's finding the post id to build a google news sitemap.
What I'm proposing above will use the seo title instead of the default post title in wordpress.
$rows = $wpdb->get_results(
"SELECT
$wpdb->posts.ID
, $wpdb->posts.post_date_gmt
, $wpdb->posts.post_title
FROM $wpdb->posts
WHERE $wpdb->posts.post_status='publish'
AND (DATEDIFF(CURDATE(), post_date_gmt)<=30)
$includeMe
ORDER BY $wpdb->posts.post_date_gmt DESC
LIMIT 0, 1000"
);