wpalchemist
8/17/2016 - 5:54 PM

Show available employees on shift overview

add_filter( 'the_content', 'fireresource_show_available_employees' );

function fireresource_show_available_employees( $content ) {
    if( is_singular( 'shift' ) && is_main_query() && !is_admin() ) {
        $available_employees = get_post_meta( get_the_id(), '_wpaesm_shiftnotes', true );
        if( $available_employees ) {
          $new_content = '<p><strong>Available Employees:</strong>' . $available_employees . '</p>';
        }
        
        $content = $new_content . $content;
    }
    
    return $content;
}