Tell me more ×
WordPress Answers is a question and answer site for WordPress developers and administrators. It's 100% free, no registration required.

How might I query for a tag given the slug?

share|improve this question

1 Answer

up vote 0 down vote accepted

Hi @JM at Work:

Like this:

$term_slug = 'foo';
$term_object = get_term_by( 'slug', $term_slug, 'post_tag' );
print_r( $term_object );
share|improve this answer
thanks for helping me again :) – JM at Work Apr 5 '11 at 9:42
@JM at Work - Sure thing. – MikeSchinkel Apr 5 '11 at 10:04

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.