Plugin Tabs noticias

This commit is contained in:
root
2026-04-14 13:50:04 -06:00
parent 299099d006
commit 19d08e5694
2334 changed files with 628926 additions and 113 deletions

View File

@@ -0,0 +1,23 @@
<?php
function areoi_render_block_card_header( $attributes, $content )
{
$class = trim(
areoi_get_class_name_str( array(
'card-header',
( !empty( $attributes['className'] ) ? $attributes['className'] : '' ),
( !empty( $attributes['background'] ) ? $attributes['background'] : '' ),
( !empty( $attributes['text_color'] ) ? $attributes['text_color'] : '' ),
( !empty( $attributes['border_color'] ) ? $attributes['border_color'] : '' ),
) )
. ' ' .
areoi_get_display_class_str( $attributes, 'block' )
);
$output = '
<div ' . areoi_return_id( $attributes ) . ' class="' . areoi_format_block_id( $attributes['block_id'] ) . ' ' . $class . '">
' . $content . '
</div>
';
return $output;
}