Skip to content

Instantly share code, notes, and snippets.

View javiergbas's full-sized avatar

Javier Gutiérrez javiergbas

View GitHub Profile
<?php
// In functions.php
function register_custom_menu() {
register_nav_menu('new-menu',__( 'New Menu' ));
}
add_action( 'init', 'register_custom_menu' );
?>
// In theme php
@javiergbas
javiergbas / WC - Change number of products per page
Last active August 29, 2015 14:23
WooCommerce useful snippets for functions.php
// Display 30 products per page. Goes in functions.php
add_filter( 'loop_shop_per_page', create_function( '$cols', 'return 30;' ), 20 );