This example displays 3 posts in the News category with the Prev and Next links displayed as arrows using CSS styling.
[bw_cycle post_type=post category_name=news fx=scrollVert numberposts=3 class=sv fit=0 prevnext=y orderby=date order=desc]
Pagination not working in WordPress 4.4
The oik base plugin provides a set of shortcodes where the output can be paginated. After upgrading to WordPress 4.4 we noticed that, even though the pagination links were correct, the content being displayed was always for the first page.
Swapping oik-plugins.com and oik-plugins.biz
There may be a disruption of service while this happens as it’s necessary to unpark the oik-plugins.com domain prior to making the switch.
oik-plugins.com has moved to SiteGround
In recent months, we’ve been running multiple versions of the oik-plugins website on different hosting companies. Today, we’ve bitten the bullet and have transferred the hosting from Tentahost to SiteGround.
Here the prev (up) and next (down) arrows are created using CSS borders.
span.sv_prev a { width: 0; height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-bottom: 10px solid #444;
float: left;
text-indent: -9999px;
}
span.sv_next a { width: 0; height: 0;
border-left: 10px solid transparent;
border-right: 10px solid transparent;
border-top: 10px solid #444;
float: left;
text-indent: -9999px;
}