<?php
function seofix_rewrite_domain($v) {
$old = 'lamy-experts.kapiten-web.fr';
$new = 'lamy-experts.fr';
return is_string($v) ? str_replace($old, $new, $v) : $v;
}
add_filter('wpseo_canonical', 'seofix_rewrite_domain');
add_filter('wpseo_opengraph_url', 'seofix_rewrite_domain');
add_filter('wpseo_next_rel_link', 'seofix_rewrite_domain');
add_filter('wpseo_prev_rel_link', 'seofix_rewrite_domain');
add_filter('wpseo_schema_graph', function ($graph) {
if (is_array($graph)) {
array_walk_recursive($graph, function (&$x) {
if (is_string($x)) { $x = seofix_rewrite_domain($x); }
});
}
return $graph;
});