get_setting( array( 'success-links' ) );
$buttons = apply_filters( 'jet-data-importer/success-buttons', $buttons );
$format = '
%1$s';
$defaults = array(
'label' => __( 'View your site', 'jet-data-importer' ),
'type' => 'primary',
'target' => '_self',
'icon' => 'dashicons-admin-home',
'desc' => __( 'See what you get', 'jet-data-importer' ),
'url' => home_url( '/' ),
);
if ( ! empty( $buttons ) ) {
echo '
';
foreach ( $buttons as $button ) {
$button = wp_parse_args( $button, $defaults );
?>
';
}
?>