Creo que podrían ser una de estas dos.
La primera es la que permite filtrar por la categorías:
Código PHP:
Ver original<?php
/**
* Template Name: Portfolio 4 Column Sorted Full Width
*
* A custom page template for showing the most popular posts based on number of reader comments
*
* @package Enigmatic
* @subpackage Template
*/
get_header();
?>
<div id="portfolio-full-width">
<?php
'number_of_columns' => 4,
'image_size' => 'large-thumb',
'posts_per_page' => 50,
'filterable' => true
);
mo_display_sorted_portfolio_content($args);
?>
</div> <!-- #portfolio-full-width -->
<?php
get_footer(); // Loads the footer.php template. ?>
Esta otra es de otra plantilla del porfolio, que no filtra:
<?php
/**
* Template Name: Portfolio Category 3 Column Full Width
*
* A custom page template for displaying the portfolio items belonging to a certain portfolio category
*
* @package Enigmatic
* @subpackage Template
*/
get_header();
?>
<div id="portfolio-full-width">
<?php
$portfolio_category = get_post_meta(get_queried_object_id(), 'mo_portfolio_category', true);
'number_of_columns' => 3,
'image_size' => 'large-thumb',
'posts_per_page' => 6,
'filterable' => false,
'portfolio_category' => $portfolio_category
);
mo_display_sorted_portfolio_content($args);
?>
</div> <!-- #portfolio-full-width -->
<?php