View Single Post
Old 12-25-2013, 08:37 PM  
sarettah
see you later, I'm gone
 
Industry Role:
Join Date: Oct 2002
Posts: 14,057
I don't know that you would find any plugin to do this. You are not inside wordpress when you are on the review site (at least I don't think so). You might be able to do something with rss from wordpress pulled into the page, again not sure on that.

You could pull directly from the wordpress database at the top of each review page for whatever tag you want for that page.

Using my wife's wordpress blog (I am not sure what version) the sql would be something like:

select a.guid, a.post_title from wp_posts a
inner join wp_term_relationships b on a.id=b.object_id
inner join wp_term_taxonomy c on b.term_taxonomy_id=c.term_taxonomy_id
inner join wp_terms d on c.term_id=d.term_id
where c.taxonomy='post_tag' and d.name='tag to match to'

.

Last edited by sarettah; 12-25-2013 at 08:50 PM..
sarettah is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook