mccrum Posted January 31, 2011 Share Posted January 31, 2011 Hi, im looking to pull 3 posts from a specific Wordpress Category. At the minute I can pull 3 latest posts and display them in a flash banner using the code below. SELECT yah_posts.*, yah_postmeta.* FROM yah_posts LEFT JOIN yah_postmeta ON yah_posts.ID = yah_postmeta.post_id WHERE yah_postmeta.meta_key = 'largeimage' && yah_posts.post_status = 'publish' ORDER BY post_date DESC LIMIT 3 I want to be able to pull 3 latest posts from a specific category instead of just 3 latest posts from every category. I have put together this code below, but it doesn't seem to be working $query = "SELECT yah_posts.*, yah_postmeta.* FROM yah_posts LEFT JOIN yah_postmeta ON yah_posts.ID = yah_postmeta.post_id AND LEFT JOIN $yah_term_taxonomy ON($yah_term_relationships.term_taxonomy_id = $yah_term_taxonomy.term_taxonomy_id) WHERE yah_postmeta.meta_key = 'largeimage' && yah_posts.post_status = 'publish' AND $yah_term_taxonomy.term_id = '1' AND $yah_term_taxonomy.taxonomy = 'category' ORDER BY post_date DESC LIMIT 3"; Link to comment https://forums.phpfreaks.com/topic/226225-pull-post-from-a-specific-wordpress-category/ Share on other sites More sharing options...
trq Posted January 31, 2011 Share Posted January 31, 2011 Why not take a look at WordPress's built in API? http://codex.wordpress.org/Function_Reference#Category.2C_Tag_and_Taxonomy_Functions Link to comment https://forums.phpfreaks.com/topic/226225-pull-post-from-a-specific-wordpress-category/#findComment-1167801 Share on other sites More sharing options...
Recommended Posts
Archived
This topic is now archived and is closed to further replies.