Guest User

Untitled

a guest
Aug 10th, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. How can I create Wordpress tags programmatically?
  2. //Define the category
  3. $my_cat = array('cat_name' => 'My Category', 'category_description' => 'A Cool Category', 'category_nicename' => 'category-slug', 'category_parent' => '');
  4.  
  5. // Create the category
  6. $my_cat_id = wp_insert_category($my_cat);
  7.  
  8. <?php wp_insert_term( $term, $taxonomy, $args = array() ); ?>
Add Comment
Please, Sign In to add comment