Skip to content

Instantly share code, notes, and snippets.

@billerickson
Created May 4, 2015 14:58
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 billerickson/89e813e4e1bd3abe61bd to your computer and use it in GitHub Desktop.
Save billerickson/89e813e4e1bd3abe61bd to your computer and use it in GitHub Desktop.
<?php
/**
* Product Template
*
*/
function be_product_template( $template ) {
if( is_post_type_archive( 'product' ) )
$template = get_query_template( 'archive-portfolio' );
return $template;
}
add_filter( 'template_incldue', 'be_product_template' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment