Title: Calling pagination code in index.php
Last modified: August 31, 2016

---

# Calling pagination code in index.php

 *  [amirkianizadeh](https://wordpress.org/support/users/amirkianizadeh/)
 * (@amirkianizadeh)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/calling-pagination-code-in-indexphp/)
 * 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)

 *  [Clarion Technologies](https://wordpress.org/support/users/clarionwpdeveloper/)
 * (@clarionwpdeveloper)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/calling-pagination-code-in-indexphp/#post-7395025)
 * Hello amirkianizadeh,
 * Please put your pagination code after the loop ends this will helps you.
 * Thanks
 *  Thread Starter [amirkianizadeh](https://wordpress.org/support/users/amirkianizadeh/)
 * (@amirkianizadeh)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/calling-pagination-code-in-indexphp/#post-7395382)
 * 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.wordpress.org/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](https://wordpress.org/support/users/amirkianizadeh/)
 * (@amirkianizadeh)
 * [9 years, 11 months ago](https://wordpress.org/support/topic/calling-pagination-code-in-indexphp/#post-7395383)
 * Any help?

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

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

 * 3 replies
 * 2 participants
 * Last reply from: [amirkianizadeh](https://wordpress.org/support/users/amirkianizadeh/)
 * Last activity: [9 years, 11 months ago](https://wordpress.org/support/topic/calling-pagination-code-in-indexphp/#post-7395383)
 * Status: not resolved

## Topics

### Topics with no replies

### Non-support topics

### Resolved topics

### Unresolved topics

### All topics
