18 lines
444 B
PHP
18 lines
444 B
PHP
<?php
|
|
function areoi_render_block_modal_body( $attributes, $content )
|
|
{
|
|
$class = trim(
|
|
areoi_get_class_name_str( array(
|
|
'modal-body',
|
|
( !empty( $attributes['className'] ) ? $attributes['className'] : '' ),
|
|
) )
|
|
);
|
|
|
|
$output = '
|
|
<div ' . areoi_return_id( $attributes ) . ' class="' . areoi_format_block_id( $attributes['block_id'] ) . ' ' . $class . '">
|
|
' . $content . '
|
|
</div>
|
|
';
|
|
|
|
return $output;
|
|
} |