Skip to content

Instantly share code, notes, and snippets.

@cfpg
Created May 14, 2011 23:42
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save cfpg/972764 to your computer and use it in GitHub Desktop.
Save cfpg/972764 to your computer and use it in GitHub Desktop.
WordPress: Get Tag ID when you only have the Tag name
<?php
function get_tag_id_by_name($tag_name) {
global $wpdb;
$tag_ID = $wpdb->get_var("SELECT * FROM ".$wpdb->terms." WHERE `name` = '".$tag_name."'");
return $tag_ID;
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment