Translate Only Certain Paths
-
I am having issue with this. I have used ‘Translate Only Certain Paths’ . I dont want my blog posts to be translated. But unfortunately my blog posts are getting hreflang tags when the SEO Audit bot crawls. How do I fix this? I tried the code snippet below in functions.php which did not help.
add_filter( ‘trp_register_post_type_for_translation’, ‘trp_exclude_posts_from_translation’, 10, 2 );
function trp_exclude_posts_from_translation( $register, $post_type ) {
if ( $post_type === ‘post’ ) {
return false; // exclude blog posts
}
return $register;
}The page I need help with: [log in to see the link]
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
You must be logged in to reply to this topic.