Advertisement
Guest User

Untitled

a guest
Jun 18th, 2019
74
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. $both = wc_get_products( array( 's' => '60x60+60х60', 'limit' => -1, 'category' => array( $category->slug ) ) );
  2. $english_x = wc_get_products( array( 's' => '60x60', 'limit' => -1, 'category' => array( $category->slug ) ) );
  3. $cyrillic_x = wc_get_products( array( 's' => '60х60', 'limit' => -1, 'category' => array( $category->slug ) ) );
  4.  
  5. $both = 94
  6. $english_x = 94
  7. $cyrillic_x = 231
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement