'', 'class' => '', 'title' => '', 'thumbnail' => '', 'before' => '', 'content' => '', 'after' => '' ) ); extract($args); if (art_is_empty_html($title) && art_is_empty_html($content)) return; if ($id) { $id = ' id="' . $id . '"'; } if ($class) { $class = ' ' . $class; } ?>
>
'.$title.''; } echo $before;?>
'', 'class' => '', 'title' => '', 'content' => '', ) ); extract($args); if (art_is_empty_html($title) && art_is_empty_html($content)) return; if ($id) { $id = ' id="' . $id . '"'; } if ($class) { $class = ' ' . $class; } echo "
"; if ( !art_is_empty_html($title)) echo '
' . $title . '
'; echo '
' . $content . '
'; echo '
'; } function art_block_wrapper($args) { $args = wp_parse_args($args, array( 'id' => '', 'class' => '', 'title' => '', 'content' => '', ) ); extract($args); if (art_is_empty_html($title) && art_is_empty_html($content)) return; if ($id) { $id = ' id="' . $id . '"'; } if ($class) { $class = ' ' . $class; } $begin = <<
EOL; $begin_title = <<

EOL; $end_title = <<

EOL; $begin_content = <<
EOL; $end_content = <<
EOL; $end = << EOL; echo $begin; if ($begin_title && $end_title && !art_is_empty_html($title)) { echo $begin_title . $title . $end_title; } echo $begin_content; echo $content; echo $end_content; echo $end; } function art_vmenu_wrapper($args) { $args = wp_parse_args($args, array( 'id' => '', 'class' => '', 'title' => '', 'content' => '', ) ); extract($args); if (art_is_empty_html($title) && art_is_empty_html($content)) return; if ($id) { $id = ' id="' . $id . '"'; } if ($class) { $class = ' ' . $class; } $begin = <<
EOL; $begin_title = <<
EOL; $end_content = <<
EOL; $end = << EOL; echo $begin; if ($begin_title && $end_title && !art_is_empty_html($title)) { echo $begin_title . $title . $end_title; } echo $begin_content; echo $content; echo $end_content; echo $end; }