';
// Display the title, if set.
if ( isset( $fourbzcore_layout_opts['title_text'] ) && $fourbzcore_layout_opts['title_text'] ) {
if ( isset( $fourbzcore_layout_opts['is_widget'] ) && $fourbzcore_layout_opts['is_widget'] ) {
echo $fourbzcore_layout_opts['title_text'];
} else {
echo '
';
}
}
// The loop
while ( $fourbzcore_query->have_posts() ) {
$fourbzcore_query->the_post();
$date_format = esc_html( get_the_date() );
echo '
' .
get_the_title() . ' ';
echo ' ';
comments_popup_link( '', _x( '1 Comment', 'comments number', $fourbzcore_plugin->txt_domain ),
_x( '% Comments', 'comments number', $fourbzcore_plugin->txt_domain ), 'comments-link' );
echo '';
}
// Restore original Post Data
wp_reset_postdata();
echo '
';
}
}