⚡ This is your brand? Claim your page FREE and bring it to life on AI search.
AI Visibility Scorecard
butterflypkg.com · Media & Entertainment
At 2.3/10, butterflypkg.com is close to invisible in AI search today. Most assistants will not cite it when asked about your category - fixable, and the signals below show exactly where to start.
Monitoring for AI engine activity
In the Engagemii AEO index
#1,756,360 of 1,853,117 in Media & Entertainment for AI visibility
2.3
/10
AEO Score
from our crawl and measurement
tag in the document head, and expect WordPress to * provide it for us. */ add_theme_support( 'title-tag' ); /* * Enable support for Post Thumbnails on posts and pages. * * @link http://codex.wordpress.org/Function_Reference/add_theme_support#Post_Thumbnails */ add_theme_support( 'post-thumbnails' ); add_image_size( 'themesflat-blog', 1080, 1012, true ); add_image_size( 'themesflat-blog-grid', 1480, 1000, true ); //Get thumbnail url function themesflat_thumbnail_url($size){ global $post; if( $size== '' ) { $url = wp_get_attachment_url( get_post_thumbnail_id($post->ID) ); return esc_url($url); } else { $url = wp_get_attachment_image_src( get_post_thumbnail_id(get_the_ID()), $size); return esc_url($url[0]); } } // This theme uses wp_nav_menu() in one location. register_nav_menus( array( 'primary' => esc_html__( 'Primary Menu', 'bixos' ), 'bottom' => esc_html__( 'Bottom Menu', 'bixos' ) ) ); /* * Switch default core markup for search form, comment form, and comments * to output valid HTML5. */ add_theme_support( 'html5', array( 'search-form', 'comment-form', 'comment-list', 'gallery', 'caption', ) ); /* * Enable support for Post Formats. * See http://codex.wordpress.org/Post_Formats */ add_theme_support( 'post-formats', array( 'aside', 'image', 'gallery', 'video', 'quote', 'link', 'audio' ) ); // Set up the WordPress core custom background feature. $args = array( 'default-color' => 'ffffff', 'default-image' => '', ); add_theme_support( 'custom-background', $args ); add_theme_support( 'custom-header', $args ); // Custom stylesheet to the TinyMCE visual editor function themesflat_add_editor_styles() { add_editor_style( 'css/editor-style.css' ); } add_action( 'admin_init', 'themesflat_add_editor_styles' ); } endif; // themesflat_setup add_action( 'after_setup_theme', 'themesflat_setup' ); function themesflat_wpfilesystem() { include_once (ABSPATH. '/wp-admin/includes/file.php'); WP_Filesystem(); } /** * Register widget area. * * @link http://codex.wordpress.org/Function_Reference/register_sidebar */ function themesflat_widgets_init() { register_sidebar( array( 'name' => esc_html__( 'Sidebar Blog', 'bixos' ), 'id' => 'blog-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Blog Sidebar.', 'bixos' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); //Widget footer register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area 1', 'bixos' ), 'id' => 'footer-1', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Footer area 1.', 'bixos' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area 2', 'bixos' ), 'id' => 'footer-2', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Footer area 2.', 'bixos' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area 3', 'bixos' ), 'id' => 'footer-3', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Footer area 3.', 'bixos' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Footer Widget Area 4', 'bixos' ), 'id' => 'footer-4', 'description' => esc_html__( 'Add widgets here to appear in your sidebar Footer widget area 4.', 'bixos' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Sidebar Toggler', 'bixos' ), 'id' => 'aside-toggler-sidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar toggler.', 'bixos' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Services Sidebar', 'bixos' ), 'id' => 'themesflat-custom-sidebar-servicessidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar services.', 'bixos' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); register_sidebar( array( 'name' => esc_html__( 'Portfolio Sidebar', 'bixos' ), 'id' => 'themesflat-custom-sidebar-portfoliosidebar', 'description' => esc_html__( 'Add widgets here to appear in your sidebar portfolio.', 'bixos' ), 'before_widget' => '<div id="%1$s" class="widget %2$s">', 'after_widget' => '</div>', 'before_title' => '<h4 class="widget-title">', 'after_title' => '</h4>', ) ); } add_action( 'widgets_init', 'themesflat_widgets_init' ); function themesflat_get_style($style) { return str_replace('italic', 'i', $style); } function themesflat_fonts_url() { $fonts_url = ''; $typography_body = themesflat_get_json('typography_body'); $typography_headings = themesflat_get_json('typography_headings'); $typography_menu = themesflat_get_json('typography_menu'); $typography_sub_menu = themesflat_get_json('typography_sub_menu'); $typography_topbar = themesflat_get_json('typography_topbar'); $typography_blockquote = themesflat_get_json('typography_blockquote'); $typography_blog_post_title = themesflat_get_json('typography_blog_post_title'); $typography_blog_post_meta = themesflat_get_json('typography_blog_post_meta'); $typography_blog_post_buttons = themesflat_get_json('typography_blog_post_buttons'); $typography_blog_single_title = themesflat_get_json('typography_blog_single_title'); $typography_blog_single_comment_title = themesflat_get_json('typography_blog_single_comment_title'); $typography_sidebar_widget_title = themesflat_get_json('typography_sidebar_widget_title'); $typography_footer_widget_title = themesflat_get_json('typography_footer_widget_title'); $typography_page_title = themesflat_get_json('typography_page_title'); $typography_breadcrumb = themesflat_get_json('typography_breadcrumb'); $typography_buttons = themesflat_get_json('typography_buttons'); $typography_pagination = themesflat_get_json('typography_pagination'); $typography_bottom_menu = themesflat_get_json('typography_bottom_menu'); $typography_footer = themesflat_get_json('typography_footer'); $typography_bottom_copyright = themesflat_get_json('typography_bottom_copyright'); $font_families = array(); if ( '' != $typography_body ) { $font_families[] = $typography_body['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_body['style']); } else { $font_families[] = 'Poppins:400,400i,700,700i,900'; } if ( '' != $typography_headings ) { $font_families[] = $typography_headings['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_headings['style']); } if ( '' != $typography_menu ) { $font_families[] = $typography_menu['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_menu['style']); } if ( '' != $typography_sub_menu ) { $font_families[] = $typography_sub_menu['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_sub_menu['style']); } if ( '' != $typography_topbar ) { $font_families[] = $typography_topbar['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_topbar['style']); } if ( '' != $typography_blockquote ) { $font_families[] = $typography_blockquote['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_blockquote['style']); } if ( '' != $typography_blog_post_title ) { $font_families[] = $typography_blog_post_title['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_blog_post_title['style']); } if ( '' != $typography_blog_post_meta ) { $font_families[] = $typography_blog_post_meta['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_blog_post_meta['style']); } if ( '' != $typography_blog_post_buttons ) { $font_families[] = $typography_blog_post_buttons['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_blog_post_buttons['style']); } if ( '' != $typography_blog_single_title ) { $font_families[] = $typography_blog_single_title['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_blog_single_title['style']); } if ( '' != $typography_blog_single_comment_title ) { $font_families[] = $typography_blog_single_comment_title['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_blog_single_comment_title['style']); } if ( '' != $typography_sidebar_widget_title ) { $font_families[] = $typography_sidebar_widget_title['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_sidebar_widget_title['style']); } if ( '' != $typography_footer_widget_title ) { $font_families[] = $typography_footer_widget_title['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_footer_widget_title['style']); } if ( '' != $typography_page_title ) { $font_families[] = $typography_page_title['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_page_title['style']); } if ( '' != $typography_breadcrumb ) { $font_families[] = $typography_breadcrumb['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_breadcrumb['style']); } if ( '' != $typography_buttons ) { $font_families[] = $typography_buttons['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_buttons['style']); } if ( '' != $typography_pagination ) { $font_families[] = $typography_pagination['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_pagination['style']); } if ( '' != $typography_bottom_menu ) { $font_families[] = $typography_bottom_menu['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_bottom_menu['style']); } if ( '' != $typography_footer ) { $font_families[] = $typography_footer['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_footer['style']); } if ( '' != $typography_bottom_copyright ) { $font_families[] = $typography_bottom_copyright['family'].':100,200,300,400,500,600,700,900,'.themesflat_get_style($typography_bottom_copyright['style']); } $query_args = array( 'family' => urlencode( implode( ' is a business whose own site puts it this way: "function_exists( 'themesflat_setup' ) ): /** * Sets up theme defaults and registers support for various WordPress features." As far as answer engines are concerned it may as well not exist yet: 2.3 out of 10.
Our crawl found an llms.txt file for AI models. It also found the gaps that keep answer engines guessing: structured data describing the business, a sitemap, a heading structure that lays out what it offers.
Higher is better · 0-10
Structured Data
1
Organization / LocalBusiness JSON-LD that AI can read.
Content Structure
1
Clear headings and answer-style content.
Entity Clarity
1
How clearly your brand identity reads to AI.
E-E-A-T Signals
Experience, Expertise, Authority, Trust
1
Experience, Expertise, Authority, Trust markers.
Technical AEO
7
robots.txt, llms.txt, and AI-bot crawl access.
AI Discoverability
3
Sitemaps and entity links AI can follow.
How the web signals your brand to AI
Backlinks
0
No inbound links found yet.
Domain Trust
1
Established authority for your domain.
Entity Presence
0
Not in AI knowledge graphs yet.
News Mentions
0
No press coverage found yet.
Community
0
No community discussion yet.
0
No Reddit mentions found yet.
Your AEO score measures whether AI search engines - ChatGPT, Claude, Perplexity, Gemini - can actually read your site and cite it in answers. Roughly two-thirds of sites are invisible to them. At 2.3/10, butterflypkg.com is crawlable but under-signaled - fixable, and the signals above are where to start.
Is this your brand?
The exact fixes for butterflypkg.com
Which AI engines already crawl you
Weekly ChatGPT & Claude citation tracking
ChatGPT doesn't crawl the web like Google does. When someone asks Claude about the best project management tools, the model isn't searching your website in real-time. It's pulling from training data that stopped months or years ago.
Continue reading in your free Engagemii portalFree signup unlocks the full article plus your personalized AEO fix list for butterflypkg.com.
Scored by Engagemii on August 8, 2026. Methodology: engagemii.com/aeo/methodology
Source URL: https://engagemii.com/aeo/brands/butterflypkg
Cite this score: Engagemii (2026). "AEO Score for butterflypkg.com." Retrieved from https://engagemii.com/aeo/brands/butterflypkg
Licensed under CC BY 4.0. You may reuse this data with attribution: a visible link to engagemii.com.
Powered by Engagemii - The Answer Engine Optimization (AEO) Platform