File "category.php"

Full Path: /home/siazco/grocery.siazco.se/wp-content/themes/kapee/template-parts/single-portfolio/category.php
File size: 556 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Template part for displaying category of project
 *
 * @author 	PressLayouts
 * @package kapee/template-parts/single-portfolio
 * @since 1.0
 */

// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
	exit;
}

if ( ! kapee_get_option( 'single-portfolio-category', 1 ) ) return;
?>

<div class="project-info-item">
	<h5><?php esc_html_e( 'Category', 'kapee' );?><span>:</span></h5>
	<p><?php echo kapee_get_taxonomy_list(get_the_ID(),'portfolio_cat', ', ') ; // PHPCS:Ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?></p>
</div>