function bq_text( $atts, $content = null ) {
extract( shortcode_atts( array(
'text' => '<div class="мой класс">тут DOM дерево</div>'
), $atts ) );
ob_start();
?>
<div>
<div> <?php echo $text; ?></div>
</div>
<?php
$content = ob_get_contents();
ob_end_clean();
return $content;
}
add_shortcode('bq-text', 'bq_text');