????
| Current Path : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/staff/ |
| Current File : /home2/morganrand/www/wp-content-bkp/themes/wanderfuls/partials/staff/staff-entry-excerpt.php |
<?php
/**
* Staff entry excerpt template part
*
* @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( 'staff_entry_excerpt_length', '20' );
// Return if excerpt length is set to 0
if ( '0' == $excerpt_length ) {
return;
} ?>
<div class="staff-entry-excerpt clr">
<?php tb_excerpt( array(
'length' => $excerpt_length,
'readmore' => false,
) ); ?>
</div><!-- .staff-entry-excerpt -->