Create shortcode in Child Theme?

Shortcodes don’t ‘echo’, they need to ‘return’ something. So I guess it will work if you put your functions content between ob_start and ob_get_clean so you return everything inbetween:

function yourfunction(){ ob_start(); /* insert here the code of your function */ $output = ob_get_clean(); return $output; }