Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am looking for a plugin that can allow me to manage image gallery per category in WordPress. All the posts in a particular category should have the same set of images or a single featured image (as defined in the CMS).

Quick help will be appreciated.

share|improve this question

1 Answer

maybe this article will help you to find some existing plugin: http://speckyboy.com/2010/06/30/top-10-content-slider-plugins-for-wordpress/

I've customized wp-featured-content-slider in my agency blog to show only some categories in the slider, but it's not a plugin parameter you can configure in the admin section.

In your theme, you'll have to combine tests like :

if (is_category('XXX'))...

and

query_posts( 'cat=XXX' )

before the loop to only query the posts of the current category (see query_post codex page).

Hope this will help you!

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.