Hi,
Please open to edit sf-portfolio.php at /dante/includes/
Find this code:-
$portfolio_args=array(
'post_type' => 'portfolio',
'post_status' => 'publish',
'paged' => $paged,
'portfolio-category' => $category_slug,
'posts_per_page' => $item_count,
'tax_query' => array(
array(
'taxonomy' => 'portfolio-category',
'field' => 'id',
'terms' => array( $exclude_categories ),
'operator' => 'NOT IN'
)
)
);
Change to-:
$portfolio_args=array(
'orderby'=> 'title',
'order' => 'ASC',
'post_type' => 'portfolio',
'post_status' => 'publish',
'paged' => $paged,
'portfolio-category' => $category_slug,
'posts_per_page' => $item_count,
'tax_query' => array(
array(
'taxonomy' => 'portfolio-category',
'field' => 'id',
'terms' => array( $exclude_categories ),
'operator' => 'NOT IN'
)
)
);
Thanks
Mohammad