';
// Display 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 '
';
}
}
$items_html = '';
$fourbzcore_items_count = isset( $fourbzcore_items ) ? count( $fourbzcore_items ) : 0;
if ( isset( $fourbzcore_items ) && is_array( $fourbzcore_items ) && 0 < $fourbzcore_items_count ) {
echo '';
foreach ( $fourbzcore_items as $key => $val ) {
$name = esc_html( $key );
$value = esc_html( $val );
$items_html .= "";
}
echo $items_html;
echo '
';
}
echo '';