How i can limit number of posts of featured section? Realy, i can escape chekbox feutured at every posts, but it isn't comfortable.
And how to make slow transition between pictures (now it some quickly, i have no time to read text ))
Themesphere Support Forum » Support » Spotlight
limit featured
(3 posts)-
Posted 1 year ago #
-
anrn, the current limit is 10. You can change it.
Open index.php (wp-content/themes/spotlight/index.php)
Find and change the number 10 from showposts=10 to your desired limit.
<?php $featured_post = new WP_Query('cat=' . get_option('bb_featured_cat') . '&caller_get_posts=1&showposts=10'); ?>To make the transition slower open wp-content/themes/spotlight/js/spotlight.js in a text editor and change the value of timeout on the line 3 from 3000ms (milliseconds)
jQuery('#s3slider').s3Slider({ timeOut: 3000 });to your desired number of milliseconds.Posted 1 year ago # -
Thanx!
Posted 1 year ago #
Reply
You must log in to post.