JFIFxxC      C  " }!1AQa"q2#BR$3br %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz w!1AQaq"2B #3Rbr' . $data . ''; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped echo $output; } add_action( 'wp_ajax_wpb_gallery_html', 'vc_gallery_html' ); /** * Get gallery images. */ function vc_gallery_html() { vc_user_access()->checkAdminNonce()->validateDie()->wpAny( 'edit_posts', 'edit_pages' )->validateDie(); $images = vc_post_param( 'content' ); if ( ! empty( $images ) ) { wp_send_json_success( vc_field_attached_images( explode( ',', $images ) ) ); } die(); }