Last active
March 21, 2017 20:03
-
-
Save marcosnakamine/1aaeb7d4165f3df73a8a67d63fe4d1ed to your computer and use it in GitHub Desktop.
WooCommerce - Get current category
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
<?php | |
$wp_query->get_queried_object(); | |
/* | |
WP_Term Object | |
( | |
[term_id] => 10 | |
[name] => Hoodies | |
[slug] => hoodies | |
[term_group] => 0 | |
[term_taxonomy_id] => 10 | |
[taxonomy] => product_cat | |
[description] => | |
[parent] => 9 | |
[count] => 6 | |
[filter] => raw | |
) | |
*/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment