Created
April 16, 2014 21:36
-
-
Save matgargano/10935618 to your computer and use it in GitHub Desktop.
add a category term if it doesn't exist (wordpress)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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