Last active
May 1, 2024 19:45
-
-
Save dvoracek-jakub/ce7ca24a15e4f77b5e67d827e9db6ed7 to your computer and use it in GitHub Desktop.
Wordpress navigation in Bootstrap style
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Usage in a template | |
\YourCompany\Helpers\Pagination::render(get_query_var('paged'), $loop->max_num_pages); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi , you can add this line to test if link is active .
$current_class = strpos($page, 'current') ? 'active' : '';
then adding this class to li .
Thanks for sharing your code with us