Get category ID from category slug (not working)

You can’t use get_category_by_slug() with a custom taxonomy. You need to use get_term_by().

$category = get_term_by( 'slug', 'military', 'product_cat' );

Leave a Comment