Skip to content

Commit

Permalink
Re-add wrapping .pip-nav div for pagination
Browse files Browse the repository at this point in the history
  • Loading branch information
sewmyheadon committed Mar 14, 2019
1 parent 1c172b3 commit b5e5a5d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion includes/class-page-posts.php
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ protected function paginate_links() {
$prev_link = $prev ? "<li class='pip-nav-prev'>$prev</li>" : '';
$next_link = $next ? "<li class='pip-nav-next'>$next</li>" : '';

return "<ul class='pip-nav'>$prev_link $next_link</ul>";
return "<div class='pip-nav'><ul>$prev_link $next_link</ul></div>";
}

return '';
Expand Down

0 comments on commit b5e5a5d

Please sign in to comment.