File "staff-excerpt.php"
Full Path: /home/londdqdw/public_html/06/wp-content/plugins/sportspress/templates/staff-excerpt.php
File size: 484 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
/**
* Staff Excerpt
*
* @author ThemeBoy
* @package SportsPress/Templates
* @version 2.5.5
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly
}
if ( get_option( 'sportspress_staff_show_excerpt', 'yes' ) === 'no' ) {
return;
}
if ( ! isset( $id ) ) {
$id = get_the_ID();
}
$post = get_post( $id );
$excerpt = $post->post_excerpt;
if ( $excerpt ) {
?>
<p class="sp-excerpt">
<?php echo wp_kses_post( $excerpt ); ?>
</p>
<?php
}