Skip to content

Instantly share code, notes, and snippets.

@matgargano
Created April 16, 2014 21:36
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matgargano/10935618 to your computer and use it in GitHub Desktop.
Save matgargano/10935618 to your computer and use it in GitHub Desktop.
add a category term if it doesn't exist (wordpress)
<?php
if ( ! term_exists( 'free-flow', 'category' ) ) {
wp_insert_term( 'Free Flow', 'category',
array(
'description'=> 'Give extra left-right padding to the text block',
'slug' => 'free-flow',
)
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment