Add this PHP snippet to your theme to inject custom schema into a page, enhancing search engine understanding of the page content.
add_filter( 'aioseo_schema_graph', function ( $schemaGraph ) {
if ( is_page( 'contact' ) ) {
$schemaGraph[] = [
'@context' => 'https://schema.org',
'@type' => 'ContactPage',
'name' => 'Contact Us',
'url' => get_permalink()
];
}
return $schemaGraph;
});