Skip to content

Instantly share code, notes, and snippets.

@rolandinsh
Created August 10, 2012 06:04
Show Gist options
  • Save rolandinsh/3311580 to your computer and use it in GitHub Desktop.
Save rolandinsh/3311580 to your computer and use it in GitHub Desktop.
wp get_query_var term get term info on Archive page
<?php
/*
via http://wordpress.stackexchange.com/a/15287/7577
codex: http://codex.wordpress.org/Function_Reference/get_query_var
*/
$termslug = get_query_var( 'term' );
$taxoname = get_query_var( 'taxonomy' );
$thisterm = get_term_by( 'slug', $termslug, $taxoname );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment