Skip to content

Instantly share code, notes, and snippets.

@jchristopher
Created July 20, 2014 04:25
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jchristopher/b31f935446d4c9b3629a to your computer and use it in GitHub Desktop.
Save jchristopher/b31f935446d4c9b3629a to your computer and use it in GitHub Desktop.
<?php
// custom hook for Template Map
add_filter( 'template_map_post_types', function( $cpts, $section ) {
switch( $section ) {
case 'template-about.php':
$cpts = array( 'team' );
break;
}
return $cpts;
}, 10, 2 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment