Skip to content

Instantly share code, notes, and snippets.

@agusmu
agusmu / functions.php
Created August 19, 2013 04:35
WooCommerce - Show navigation on the top of shop page
/* Show pagination on the top of shop page */
add_action( 'woocommerce_before_shop_loop', 'woocommerce_pagination', 10 );
/* Remove pagination on the bottom of shop page */
remove_action( 'woocommerce_after_shop_loop', 'woocommerce_pagination', 10 );