Advertisement
Guest User

Untitled

a guest
Jul 20th, 2019
142
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. if( ! function_exists( 'sportexx_cl_add_filter_to_offset_products_query' ) ) {
  2. function sportexx_cl_add_filter_to_offset_products_query() {
  3. add_filter( 'woocommerce_shortcode_products_query', 'sportexx_cl_add_offset_to_products_query', 10, 2 );
  4. }
  5. }
  6.  
  7. if( ! function_exists( 'sportexx_cl_remove_filter_to_offset_products_query' ) ) {
  8. function sportexx_cl_remove_filter_to_offset_products_query() {
  9. remove_filter( 'woocommerce_shortcode_products_query', 'sportexx_cl_add_offset_to_products_query', 10, 2 );
  10. }
  11. }
  12.  
  13. if( ! function_exists( 'sportexx_cl_add_offset_to_products_query' ) ) {
  14. function sportexx_cl_add_offset_to_products_query( $args, $atts ) {
  15. $args['offset'] = 8 ;
  16. return $args;
  17. }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement