Hi I need a simple piece of code to delete a category for a custom plugin, but I just found two function references that seems quite the same:
Function Reference: wp_delete_term
Description: Removes a term from the database.
Usage: <?php wp_delete_term( $term_id, $taxonomy, $args ) ?>
Function Reference: wp_delete_category
Description: Deletes one existing category.
Usage: <?php wp_delete_category( $cat_ID ) ?>
My question is which one I should use (just for delete a category), and what is exactly the difference (or what makes one option better than the other).
I'm thinking that the "category" is a "term" and that wp_delete_category()
uses wp_delete_term()
so I should use wp_delete_term()
- I'm right on that or I'm missing something.
Thanks
Hi I need a simple piece of code to delete a category for a custom plugin, but I just found two function references that seems quite the same:
Function Reference: wp_delete_term
Description: Removes a term from the database.
Usage: <?php wp_delete_term( $term_id, $taxonomy, $args ) ?>
Function Reference: wp_delete_category
Description: Deletes one existing category.
Usage: <?php wp_delete_category( $cat_ID ) ?>
My question is which one I should use (just for delete a category), and what is exactly the difference (or what makes one option better than the other).
I'm thinking that the "category" is a "term" and that wp_delete_category()
uses wp_delete_term()
so I should use wp_delete_term()
- I'm right on that or I'm missing something.
Thanks
Share Improve this question asked Nov 4, 2012 at 0:00 user983248user983248 1,3603 gold badges20 silver badges31 bronze badges1 Answer
Reset to default 1wp_delete_category()
is a convenient shortcut if you want to delete a category. Use it to type less.
发布者:admin,转转请注明出处:http://www.yc00.com/questions/1745102618a4611367.html
评论列表(0条)