Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. // add tag support to pages
  2. function tags_support_all() {
  3. register_taxonomy_for_object_type('post_tag', 'page');
  4. }
  5.  
  6. // ensure all tags are included in queries
  7. function tags_support_query($wp_query) {
  8. if ($wp_query->get('tag')) $wp_query->set('post_type', 'any');
  9. }
  10.  
  11. // tag hooks
  12. add_action('init', 'tags_support_all');
  13. add_action('pre_get_posts', 'tags_support_query');