Skip to content

Instantly share code, notes, and snippets.

@robertcedwards
Created May 1, 2012 00:57
Show Gist options
  • Save robertcedwards/2564070 to your computer and use it in GitHub Desktop.
Save robertcedwards/2564070 to your computer and use it in GitHub Desktop.
Adding custompost type with taxonomy then display on tag page
register_taxonomy("Tags", array("video"), array("hierarchical" => false, "label" => "Video Tags", "query_var"=> true,"singular_label" => " Video Tag", "rewrite" => true));
<?php $args = array( 'post_type' => 'video', 'posts_per_page' => 10 , 'tags' => 'frontpage' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment