Voeg deze code toe in functions.php van je thema of Code Snippets.


De locatie kun je wijzigen door woocommerce_before_shop_loop te vervangen voor andere hook.


function name_snippet() {
    echo do_shortcode('[facetwp facet="pagination"]');
}

add_action( 'woocommerce_before_shop_loop','name_snippet',1 );