// Function to inject the chatbot into the homepage content
function zealmat_chatbot_inject_into_content($content) {
if (is_front_page() || is_home()) {
$chatbot_html = ‘



‘;
$content .= $chatbot_html;
}
return $content;
}
add_filter(‘the_content’, ‘zealmat_chatbot_inject_into_content’);