Skip to content

Instantly share code, notes, and snippets.

@juanfra
Created July 13, 2015 13:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save juanfra/42950f20cb22908423ed to your computer and use it in GitHub Desktop.
Save juanfra/42950f20cb22908423ed to your computer and use it in GitHub Desktop.
Modify the amount of InfoBoxes to display on the home page.
<?php
//* Do NOT include the opening php tag
// filter the amount of info boxes items displayed on the home page
function nice_home_infobox_limit( $limit ){
// -1 = all, 1=1, 2=2, etc.
$limit = -1;
return $limit;
}
add_filter( 'nice_home_infobox_posts', 'nice_home_infobox_limit' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment