> Boone's Pagination wordpress plugin resources analysis

Boone's Pagination wordpress plugin resources analysis

Download This Plugin
Download Elegant Themes
Name Boone's Pagination
Version 1.1
Author Boone B Gorges
Rating 0
Last updated 2012-05-02 02:17:00
Downloads
692
Download Plugins Speed Test plugin for Wordpress

Home page

Delta: 0%

Post page

Delta: 0%
Boone's Pagination plugin has no negative impact on PageSpeed score.

Home page PageSpeed score has been degraded by 0%, while Post page PageSpeed score has been degraded by 0%

Boone's Pagination plugin added 15 bytes of resources to the Home page and 32 bytes of resources to the sample Post page.

Boone's Pagination plugin added 0 new host(s) to the Home page and 0 new host(s) to the sample Post page.

Great! Boone's Pagination plugin ads no tables to your Wordpress blog database.

Here's how I recommend using the class.

  1. Either activate this plugin, or include the class in your own plugin file.
  2. When you start to render the page with the post list, instantiate the pagination class, using an argument array if you'd like:
$pargs = array(
  'get_per_page_key' => 'perpage',
  'get_paged_key'    => 'current_page',
  'per_page'         => 15
);
$pagination = new BBG_CPT_Pag( $args );
  1. When constructing your query arguments (for query_posts() or WP_Query), you can use the class to get your pagination arguments out of the $_GET parameters. For instance:
$args = array(
  ...
  'posts_per_page' => $pagination->get_per_page,
  'paged' => $pagination->get_paged
  ...
);
query_posts( $args );
  1. After firing the query, use the setup_query() method to populate the rest of the class. If you used query_posts(), you don't need an argument:
$pagination->setup_query();

If you use new WP_Query, you'll have to pass the query object:

$my_query = new WP_Query;
$pagination->setup_query( $my_query );
  1. Then you can use all sorts of fun methods, like
$pagination->paginate_links();
$pagination->currently_viewing_text();
Resources added by plugin to Home page/Post page in kB
Total size of resources for Home page/Post page in kB
Random Theme Tests
Nest screenshot

Nest

by: ychongsaytc

53000
40%
WP Knowledge Base screenshot

WP Knowledge Base

by: swashata

15387
100%