$attributes Block attributes. * @param string $content Rendered inner block content. * @return string * @since 1.1.1 */ public function render( $attributes, $content = '' ) { if ( empty( $attributes ) ) { return $content; } $markup_class = new Address_Markup( $attributes ); ob_start(); echo wp_kses( $markup_class->markup( $content ), self::get_allowed_form_html() ); $output = ob_get_clean(); return false !== $output ? $output : ''; } }