Elementor – WordPress action "wp": Cannot modify header information
I would want to show some HTML code in my WordPress page. So in my child theme functions.php, I have written an action like this one: add_action('wp', function() { if(is_admin()) { return; } $html = '<div class="home_immodvisor">'; echo $html; });…