[Plugin: pagebar] Paginated Posts
-
I noticed that navigation on paginated posts was not appearing so I modified the basebar class initialization method from:
global $wp_query, $pbOptions; //line 46
//
//
$this->max_page = is_singular() ? $numpages : $max_page; // line 49
to:
global $wp_query, $pbOptions, $numpages; //line 46
//
//
$this->max_page = is_singular() ? $numpages : $max_page; // line 49
Viewing 5 replies - 1 through 5 (of 5 total)
Viewing 5 replies - 1 through 5 (of 5 total)
- The topic ‘[Plugin: pagebar] Paginated Posts’ is closed to new replies.