You appear to be a bot. Output may be restricted
Description
Return the required page if this is the shortcode we're processing
Called if this shortcode has a "posts_per_page" parameter Note: Currently this simply calls bw_get_parm_shortcode_id() In the future we may deal with different forms of paging. e.g. by starting letter, date We make a number of assumptions:
- The result set doesn't change between loadings of the page.
- As the visitor clicks on different links within the page a new/updated &bwscidnnn= is appended to the query URL
- Each paginated shortcode starts from page=1
- $bwscid
- ( integer ) required – the shortcode ID
Usage
$integer = bw_check_paged_shortcode( $bwscid );
Parameters
Returns
integer required page
Source
File name: oik/shortcodes/oik-navi.php
Lines:
1 to 4 of 4
function bw_check_paged_shortcode( $bwscid ) { $page = bw_get_parm_shortcode_id( $bwscid ); return( $page); }