[tea_page_content id="34,65" template="default"]
function insert_shortcode( $atts, $index = null ) {
$post_to_insert = intval($index) ? get_post($index) : get_page_by_path($index, OBJECT,get_post_types( '', 'names' ));
if (is_null($post_to_insert)) return "Insertion $index not found";
return do_shortcode("<!--insertion: $index -->" . $post_to_insert->post_content); // рекурсия для вложенных контентов
}
add_shortcode('insert','insert_shortcode' );