';
if ( boldthemes_get_option( 'hide_headline' ) ) {
$excerpt = boldthemes_get_the_excerpt( get_the_ID() );
echo '
' . boldthemes_get_heading_html (
array (
'superheadline' => $meta_html,
'headline' => get_the_title(),
'subheadline' => $excerpt,
'size' => 'large',
'html_tag' => 'h1',
'dash' => BoldThemesFrameworkTemplate::$dash
)
);
echo '
';
}
if ( BoldThemesFrameworkTemplate::$media_html != '' ) {
echo '
' . BoldThemesFrameworkTemplate::$media_html . '
';
}
$extra_class = '';
if ( BoldThemesFrameworkTemplate::$post_format == 'link' && BoldThemesFrameworkTemplate::$media_html == '' ) {
$extra_class = ' btLinkOrQuote';
}
echo '
' . BoldThemesFrameworkTemplate::$content_html . '
';
global $multipage;
if ( $multipage ) {
echo '
';
wp_link_pages( array(
'before' => '
' . esc_html__( 'Pages:', 'nifty' ),
'separator' => '- ',
'after' => '
'
));
echo '
';
}
if ( ( BoldThemesFrameworkTemplate::$tags_html != '' ) || ( $share_html != '' ) ) {
echo '
';
if ( BoldThemesFrameworkTemplate::$tags_html != '' ) {
echo '
';
echo wp_kses( BoldThemesFrameworkTemplate::$tags_html, 'tags' );
echo '
';
}
if ( $share_html != '') {
echo '
' . esc_html__( 'Share', 'nifty' ) . '' . wp_kses( $share_html, 'share' ) . '
';
}
echo '
';
}
echo '