Events

Public Sector

Filter

Filter

Sorry, nothing was found here.

Trusted by

Get the latest stories in your inbox!
Whether you’re interested in news for enterprises or recommerce – we are here to inspire you!
Sign up now!

add_filter('wpseo_schema_graph_pieces', 'customize_yoast_schema_language', 10, 2); function customize_yoast_schema_language($pieces, $context) { foreach ($pieces as $key => $piece) { if (is_a($piece, 'Yoast\WP\SEO\Generators\Schema\Article')) { // Ensuring we only modify the schema for Swedish pages if (strpos($_SERVER['REQUEST_URI'], '/sv/') !== false) { $pieces[$key]->data['inLanguage'] = 'sv-SE'; } } } return $pieces; }