Fix - Include staff name and profile in [staff] shortcode
This commit is contained in:
23
templates/staff-content.php
Normal file
23
templates/staff-content.php
Normal file
@@ -0,0 +1,23 @@
|
||||
<?php
|
||||
/**
|
||||
* Staff Content
|
||||
*
|
||||
* @author ThemeBoy
|
||||
* @package SportsPress/Templates
|
||||
*/
|
||||
|
||||
if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly
|
||||
if ( get_option( 'sportspress_staff_show_content', 'yes' ) === 'no' ) return;
|
||||
|
||||
if ( ! isset( $id ) )
|
||||
$id = get_the_ID();
|
||||
|
||||
$post = get_post( $id );
|
||||
$content = $post->post_content;
|
||||
if ( $content ) {
|
||||
?>
|
||||
<div class="sp-template sp-section-staff-content sp-template-content">
|
||||
<div class="sp-content"><?php echo apply_filters( 'the_content', $content ); ?></div>
|
||||
</div>
|
||||
<?php
|
||||
}
|
||||
Reference in New Issue
Block a user