thatryan
thatryan

Reputation: 1559

jQuery Cycle Plugin pager adding extra numbers, but no slides

Built a theme in HTML/CSS and customized a the cycle plugin to be a gallery with pagination. Worked perfect, now turning the theme into wordpress, and the pager is adding extra numbers, like blank slide between each image. Anyone seen this before?

Upvotes: 0

Views: 1531

Answers (2)

malsup
malsup

Reputation: 516

You can also use the 'slideExpr' option to specify which elements should be used as slides.

http://jquery.malsup.com/cycle/slideExpr.html

Upvotes: 1

thatryan
thatryan

Reputation: 1559

Solved it, odd. Was wordpress issue where it was adding in break ( <br />) tags automatically. Not helpful lol. If it happens to you, try adding this to the top of your template file,

<?php remove_filter ('the_content',  'wpautop'); ?>

Upvotes: 1

Related Questions