/** * CHAT BUBBLE — ADMIN ONLY (NOT VISIBLE TO PUBLIC) * No video, opens iframe directly. */ function add_chat_bubble_all_pages() { // Hide from public visitors if ( ! is_user_logged_in() || ! current_user_can('manage_options') ) { return; } $chat_iframe_url = 'https://ellsworth-chatbot.vercel.app/'; add_action('wp_footer', function() use ($chat_iframe_url) { echo ''; echo ''; echo '
'; echo ''; }, 9999); } add_chat_bubble_all_pages();