Pagination by HocWP Team is a pagination plugin that allows to set up navigation on WordPress site.
Pagination by HocWP Team is a pagination plugin that allows to set up navigation on WordPress site. Pagination by HocWP Team not only supports the default query but also it can be used to show navigation for the custom query on WordPress.
Features
Translations
Updates to the plugin will be posted on www.hocwp.net and the Pagination by HocWP Team homepage will always link to the newest version.
Install this plugin from your WordPress site Dashboard or follow these steps below:
sb-paginate
folder to the /wp-content/plugins/
directory.Settings
menu that appears in your admin menu. PaginationExamples:
For the default query:
<?php if(function_exists("hocwp_pagination")) hocwp_pagination(); ?>
For the custom query usage with arguments:
<?php $query = new WP_Query(array("posts_per_page" => 1, "paged" => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1)); ?> <?php while ( $query->have_posts() ) : $query->the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; wp_reset_postdata(); ?> <?php if(function_exists("hocwp_pagination")) hocwp_pagination(array("query" => $query)); ?>
For basic usage, you can also have a look at the plugin homepage.
Please visit www.hocwp.net for more details.
Install this plugin from your WordPress site Dashboard or follow these steps below:
sb-paginate
folder to the /wp-content/plugins/
directory.Settings
menu that appears in your admin menu. PaginationExamples:
For the default query:
<?php if(function_exists("hocwp_pagination")) hocwp_pagination(); ?>
For the custom query usage with arguments:
<?php $query = new WP_Query(array("posts_per_page" => 1, "paged" => ( get_query_var( 'paged' ) ) ? absint( get_query_var( 'paged' ) ) : 1)); ?> <?php while ( $query->have_posts() ) : $query->the_post(); ?> <?php get_template_part( 'content', get_post_format() ); ?> <?php endwhile; wp_reset_postdata(); ?> <?php if(function_exists("hocwp_pagination")) hocwp_pagination(array("query" => $query)); ?>
For basic usage, you can also have a look at the plugin homepage.
Go to Settings
Pagination and change the value for customizing pagination.