• pagination plugins doesn’t work on my theme. (Radiate theme)
    So I tried to paginate with coding.
    I add the code in function.php, style it in style.css
    But I do not know why I can not call it in index.php. wherever I paste it in index.php, it doesn’t work.
    finally I had to paste it in footer.php which doesn’t looks good as you see in my site (WWW.cinemagap.com)
    So anyone can tell me where should I paste this code in index.php to work below page?

    this is the code:

    <?php if (function_exists("pagination")) {
        pagination($additional_loop->max_num_pages);
    } ?>

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hello amirkianizadeh,

    Please put your pagination code after the loop ends this will helps you.

    Thanks

    Thread Starter amirkianizadeh

    (@amirkianizadeh)

    actually I’m a newbie in PHP. So could you tell me exactly where should I paste this code?

    <?php
    
    /**
     * The main template file.
     *
     * This is the most generic template file in a WordPress theme
     * and one of the two required files for a theme (the other being style.css).
     * It is used to display a page when nothing more specific matches a query.
     * E.g., it puts together the home page when no home.php file exists.
     * Learn more: http://codex.ww.wp.xz.cn/Template_Hierarchy
     *
     * @package ThemeGrill
     * @subpackage Radiate
     * @since Radiate 1.0
     */
    
    get_header(); ?>
    
    	<div id="primary" class="content-area">
    
    		<main id="main" class="site-main" role="main">
    
    		<?php if ( have_posts() ) : ?>
    
    			<?php /* Start the Loop */ ?>
    			<?php while ( have_posts() ) : the_post(); ?>
    
    				<?php
    
    					/* Include the Post-Format-specific template for the content.
    					 * If you want to override this in a child theme, then include a file
    					 * called content-___.php (where ___ is the Post Format name) and that will be used instead.
    					 */
    					get_template_part( 'content', get_post_format() );
    				?>
    
    			<?php endwhile; ?>
    
    			<?php radiate_paging_nav(); ?>
    
    		<?php else : ?>
    
    			<?php get_template_part( 'content', 'none' ); ?>
    
    		<?php endif; ?>
    
    		</main><!-- #main -->
    	</div><!-- #primary -->
    
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Thread Starter amirkianizadeh

    (@amirkianizadeh)

    Any help?

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘Calling pagination code in index.php’ is closed to new replies.