Last active
September 14, 2016 10:22
-
-
Save javiergbas/602103b7ea0ad3fece11ec6829ba601c to your computer and use it in GitHub Desktop.
Only display content in current language in sitemap, so you can use /page-sitemap.xml and /en/page-sitemap.xml.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Yoast seo WPML sitemap | |
// Only display content in current language | |
if (isset($sitepress)) add_filter('wpseo_posts_join', 'sitemap_per_language', 10, 2); | |
function sitemap_per_language($join, $type) { | |
global $wpdb, $sitepress; | |
$lang = $sitepress->get_current_language(); | |
return " JOIN " . $wpdb->prefix . "icl_translations ON element_id = ID AND element_type = 'post_$type' AND language_code = '$lang'"; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment