' . wp_kses( $slide_title, SWELL_Theme::$allowed_text_html ) . '
';
}
// サブコピー
if ( '' !== $slide_text ) {
echo '
' . wp_kses( nl2br( $slide_text ), SWELL_Theme::$allowed_text_html ) . '
';
}
// ブログパーツ
if ( $parts_id ) echo do_shortcode( '[blog_parts id="' . $parts_id . '"]' );
// ボタン or スライド全体をリンク
if ( '' !== $slide_url && '' !== $btn_text ) :
$btn_args = [
'href' => $slide_url,
'text' => $btn_text,
'btn_type' => $SETTING['slider1_btntype'],
'btn_col' => $SETTING['slider1_btncol'],
];
\SWELL_Theme::pluggable_parts( 'mv_btn', $btn_args );
elseif ( $slide_url ) :
// phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
echo '
';
endif;
?>