WordPress built-in method to extract array of term IDs?
I’m querying a custom taxonomy for a post, hoping to get a list of all terms for that post and taxonomy. get_the_terms($post_id, $taxonomy) … Read more
I’m querying a custom taxonomy for a post, hoping to get a list of all terms for that post and taxonomy. get_the_terms($post_id, $taxonomy) … Read more
I created a shortcode that will list the categories in my custom taxonomy and will return a list of all the categories that … Read more
Closed. This question is off-topic. It is not currently accepting answers. Your question should be specific to WordPress. Generic PHP/JS/SQL/HTML/CSS questions might be … Read more
How to change / delete product short description in Woocommerce I use $short_desc = $post->post_excerpt; to read the property but I cant change … Read more
I have a function set up that prints the taxonomy term name and slug for every products-category taxonomy term present. This works great, … Read more
I have a custom post type called shows and taxonomy called podcast. Using taxonomy-podcast.php, I having hard time finding a function that will … Read more
I want to check if a term object is in an get_terms array, but i really can’t figure out how to do it. … Read more
With the wp_update_term_count_now, how can I use the update_count_callback to specify my own count. I need to include counts from another database that … Read more
I have a list of terms I’m displaying using “get_terms”. Each term is linked so if the user clicks it, they go to … Read more
I had a template that relied on $terms = get_terms( “ingredient”, array( ‘name__like’ => $letter ) ); to return all posts where the … Read more