????
| Current Path : /home2/morganrand/www/wp-content/themes/wanderfuls/partials/portfolio/ |
| Current File : /home2/morganrand/www/wp-content/themes/wanderfuls/partials/portfolio/portfolio-entry-excerpt.php |
<?php
/**
* Outputs the portfolio entry excerpt
*
* @package Wanderfuls WordPress theme
* @subpackage Partials
* @version 3.0.0
*/
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
// Get excerpt length
$excerpt_length = tb_get_mod( 'portfolio_entry_excerpt_length', '20' );
// Return if excerpt length is set to 0
if ( '0' == $excerpt_length ) {
return;
} ?>
<div class="portfolio-entry-excerpt clr">
<?php tb_excerpt( array(
'length' => $excerpt_length,
'readmore' => false,
) ); ?>
</div><!-- .portfolio-entry-excerpt -->