You appear to be a bot. Output may be restricted
Description
Create previous and next linksPrimarily for use with scrollVert. In the Centita theme, the links were in an ordered list.
- <ol>
- <li class="previous"><a href="#">Previous</a></li>
- <li class="next"><a href="#">Next</a></li>
- </ol>
Usage
bw_cycle_prevnext_links( $class );
Parameters
- $class
- ( string ) required – the class parameter for the cycle
Returns
voidSource
File name: oik/shortcodes/oik-cycle.phpLines:
1 to 8 of 8
function bw_cycle_prevnext_links( $class ) { span( "${class}_prev"); aname( "prev", "Prev" ); epan(); span( "${class}_next" ); aname( "next", "Next" ); epan(); }View on GitHub View on Trac