This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* 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 ); |