b0y-101 Mini Shell


Current Path : E:/wordpress/wp-content/themes/ashe/templates/grid/
File Upload :
Current File : E:/wordpress/wp-content/themes/ashe/templates/grid/category-description.php

<?php

$categories = get_category( get_query_var( 'cat' ) );
$category_name = $categories->name;
$category_description = $categories->category_description;

?>

<div class="category-description">  

	<h4><?php echo esc_html( $category_name ); ?></h4>

	<?php
		if ( !empty( $category_description ) ) {
			echo '<p>'. $category_description .'</p>';
		}
	?>

</div>

Copyright © 2019 by b0y-101