type ) {
default:
case 'list':
echo '
';
if ( is_array( $this->list ) && ! empty( $this->list ) ) {
echo '
';
foreach ( $this->list as $l ) {
echo '- ' . wp_kses_post( $l ) . '
';
}
echo '
';
}
if ( !empty( $this->button ) ) {
echo '
'.esc_html( $this->button['label'] ).'';
}
echo '
';
break;
}
}
}
endif;
?>