Jacqui Jeras is an American meteorologist. She is currently working as the On-Camera Meteorologist for The Weather Channel. Previously, she has served at the CNN and NADA Unexplained Files. Let’s … Read more
if (!function_exists('gp_fix_schema_init')) {
function gp_fix_schema_init() {
add_filter('wpseo_schema_person', 'gp_fix_person');
add_filter('wpseo_schema_organization', 'gp_fix_org');
add_filter('wpseo_schema_article', 'gp_fix_article');
}
function gp_fix_person($data) {
$data['name'] = 'Shreya Sharma';
$data['url'] = 'https://4iz4.com/about-us';
return $data;
}
function gp_fix_org($data) {
$data['name'] = '4iz4';
$data['url'] = 'https://4iz4.com';
return $data;
}
function gp_fix_article($data) {
$data['author'] = array(
'@type' => 'Person',
'name' => 'Shreya Sharma',
'url' => 'https://4iz4.com/about-us'
);
return $data;
}
function gp_fix_article($data) {
$data['author']['url'] = 'https://4iz4.com/about-us'; // ✅ THIS FIX
return $data;
add_action('init', 'gp_fix_schema_init');
}