$attributes Block attributes. * @param string $content Post content. * * @return string|boolean */ public function render( $attributes, $content = '' ) { if ( ! empty( $attributes ) ) { $markup_class = new Input_Markup( $attributes ); ob_start(); // phpcs:ignore echo $markup_class->markup(); } return ob_get_clean(); } }