Skip to content

Instantly share code, notes, and snippets.

@iamtekeste
Created May 19, 2015 06:51
Show Gist options
  • Select an option

  • Save iamtekeste/40866c769abf170ebe2c to your computer and use it in GitHub Desktop.

Select an option

Save iamtekeste/40866c769abf170ebe2c to your computer and use it in GitHub Desktop.
If your term name or titles have ampersands then use _wp_specialchars
function get_cat_ID( $cat_name ) {
$cat_name = _wp_specialchars( $cat_name ); // get_term_by expects $cat_name to be escaped
$cat = get_term_by( 'name', $cat_name, 'category' );
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment