Skip to content

Instantly share code, notes, and snippets.

@alessandrotesoro
Last active August 29, 2015 14:08
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 alessandrotesoro/ed11aa848c3205e6e2e1 to your computer and use it in GitHub Desktop.
Save alessandrotesoro/ed11aa848c3205e6e2e1 to your computer and use it in GitHub Desktop.
WPRM Show all items within the menu for the wprm_menu shortcode.
/**
* Display All items within the menu.
*
* @return $args
*/
function wprm_show_all_items($args) {
$args['posts_per_page'] = -1;
return $args;
}
add_filter( 'wprm_full_menu_args', 'wprm_show_all_items' );
add_filter( 'wprm_menu_category_args', 'wprm_show_all_items');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment