Osclass Tutorial - Adding pagination links to the home page

Latte

New member
XNullUser
Joined
Feb 1, 2022
Messages
12
Reaction score
21
Points
3
NullCash
192
First you will want to open the main.php file in your theme folder.
<p class='pagination'><?php echo osc_search_pagination(); ?></p>
<p class="see_more_link"><a href="<?php echo osc_search_show_all_url();?>"><strong><?php _e("See all offers", 'modern'); ?> &raquo;</strong></a></p>

Then replace the above code with this code
<div class='paginate'><?php
$params = array('total' => ceil(osc_total_active_items()/osc_default_results_per_page_at_search() ) );
echo osc_pagination($params); ?>
</div>
 

Aleksandr

Member
XNullUser
Joined
May 9, 2022
Messages
358
Reaction score
0
Points
16
NullCash
16
Отличная работа! Превосходно, большое вам спасибо.
 
Top