This PHP snippet allows you to add custom meta tags to the homepage, improving SEO and controlling how the homepage is presented in search engines.
add_filter( 'aioseo_meta_tags', function ( $metaTags ) {
if ( is_front_page() ) {
$metaTags['keywords'] = 'custom, homepage, seo';
}
return $metaTags;
});