Skip to content

Instantly share code, notes, and snippets.

View feanorfelagund's full-sized avatar

Dan feanorfelagund

View GitHub Profile
@claudiosanches
claudiosanches / functions.php
Created July 13, 2015 04:20
WooCommerce - Change variations per page on admin screen
function custom_wc_admin_variations_per_page( $qty ) {
return 20;
}
add_filter( 'woocommerce_admin_meta_boxes_variations_per_page', 'custom_wc_admin_variations_per_page' );