[Plugin: Power slider] Use specific categories
-
Hi!
I’m trying to set specific categories to show up in power slider.
Using this code, I get only category which its id is 6:<?php the_power_slider( array( 'category' => 6, 'limit' => 10, 'width' => 637, 'height' => 222, 'style' => 'white', // 'white', 'none' 'animation' => 'fade', // 'fade', 'horizontal', 'vertical' 'speed' => 600, 'delay' => 4000 ) ); ?>
However, using the following, I get ALL categories showing up:
<?php the_power_slider( array( 'category' => 6,8, 'limit' => 10, 'width' => 637, 'height' => 222, 'style' => 'white', // 'white', 'none' 'animation' => 'fade', // 'fade', 'horizontal', 'vertical' 'speed' => 600, 'delay' => 4000 ) ); ?>
When what I really wanted is to have both categories, 6 and 8 (or eventually more in the future) showing up.
Is there a way to get it done?
Thanx
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘[Plugin: Power slider] Use specific categories’ is closed to new replies.