beans_comment_before_fields

Echo comment fields opening wraps.

This function must be attached to the WordPress ‘comment_form_before_fields’ action which is only called if the user is not logged in.

beans_comment_before_fields( )

Return: (void)

Source

function beans_comment_before_fields() {

	beans_open_markup_e( 'beans_comment_fields_wrap', 'div', array( 'class' => 'uk-width-medium-1-1' ) );

		beans_open_markup_e( 'beans_comment_fields_inner_wrap', 'div', array(
			'class' => 'uk-grid uk-grid-small',
			'data-uk-grid-margin' => '',
		) );

}