Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@juanfra
Created January 6, 2018 21:11
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/f3ee42a42d522ac1236263a1230a210b to your computer and use it in GitHub Desktop.
Save juanfra/f3ee42a42d522ac1236263a1230a210b to your computer and use it in GitHub Desktop.
Modify the infoboxes default args.
<?php
//* Do NOT include the opening php tag
add_filter( 'nicethemes_infoboxes_args', 'custom_infoboxes_args' );
function custom_infoboxes_args( $args ) {
$args['columns'] = 4; // change this value if needed
$args['numberposts'] = 4; // change this value if needed
return $args;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment