• Hi guys

    So my blog here https://www.page3sportz.com/ is showing content from the 2nd page on the homepage itself. The second page can also be seen at /page/2/ but for some reason I am not getting the pagination on the homepage.

    Please advise on how to resolve this

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter pbseo

    (@pbseo)

    Here is the content of the navigation.php file

    <?php global $SMTheme; ?>
    <?php if (!$SMTheme->get( 'layout', 'dpagination' )) { ?>
    <div class='pagination classic'>
    			<?php
    global $wp_query;
    $big = 999999999;
    			echo paginate_links( array(
    	'base' => str_replace( $big, '%#%', get_pagenum_link( $big ) ),
    	'format' => '?paged=%#%',
    	'current' => max( 1, get_query_var('paged') ),
    	'total' => $wp_query->max_num_pages
    ) );
    ?>
    </div>
    
    <?php } else {
    	$currentpage=max( 1, get_query_var('paged') );
    	if ($wp_query->max_num_pages > $currentpage) {
    ?>
    <div class='pagination'>
    	<a class="nextpage" alt='<?php echo ($currentpage+1) ?>' href='<?php echo get_pagenum_link($currentpage+1) ?>'><?php echo $SMTheme->_( 'nextpage' ); ?></a>
    </div>
    <?php } }?>

    I’m sorry but your chosen theme is not released under GPL. Official WordPress policy states that all plugins and themes that are publicly released are required to adhere to https://www.ads-software.com/about/gpl/

    I would also strongly recommend that you read this article and consider changing to a theme from a reputable source asap.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Page 2 showing up on homepage itself’ is closed to new replies.