beans_close_markup_e

Echo close markup registered by ID.

This function is similar to beans_open_markup(), but does not accept HTML attributes. The $id argument must be the identical to the opening markup.

beans_close_markup_e( string $id, string $tag )

Return: (void)

Parameters

NameTypeRequiredDefaultDescription
$idstringtrue-Identical to the opening markup ID.
$tagstringtrue-The HTML tag.
$varmixedtrue-Additional variables passed to the functions hooked to $id.

Source

function beans_close_markup_e( $id, $tag ) {

	echo call_user_func_array( 'beans_close_markup', func_get_args() );

}