';
				$output .= the_title( '', false );
				if ( 'excerpt' === $show_content ) {
					$output .= '
' . get_the_excerpt() . '
';
				} elseif ( 'full-content' === $show_content ) {
					$content = apply_filters( 'the_content', get_the_content() );
					$content = str_replace( ']]>', ']]>', $content );
					$output .= '
' . wp_kses_post( $content ) . '
';
				}
						$output .= '