Skip to content

Instantly share code, notes, and snippets.

@ville6000
Last active October 22, 2015 08:24
Show Gist options
  • Save ville6000/c534251415a90bfcf0c6 to your computer and use it in GitHub Desktop.
Save ville6000/c534251415a90bfcf0c6 to your computer and use it in GitHub Desktop.
Tag support for WordPress pages
<?php
function my_theme_init() {
register_taxonomy_for_object_type( 'post_tag', 'page' );
}
add_action( 'init', 'my_theme_init' );
function my_theme_tags_support_query( $wp_query ) {
if ( $wp_query->get( 'tag' ) ) {
$wp_query->set( 'post_type', 'any' );
}
}
add_action( 'pre_get_posts', 'my_theme_tags_support_query' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment