Người dùng này không có chủ đề yêu thích nào.
Chủ đề diễn đàn yêu thích
Chủ đề diễn đàn đã tạo
| Trạng thái |
Chủ đề
|
Người hỗ trợ | Ý kiến | Bài viết | Mới nhất |
|---|---|---|---|---|---|
|
Alternative languages (hreflangs) in Yoast SEO sitemaps show for hidden/disabled languages.
Được bắt đầu bởi: anna-stanczykT
trong: English Support
Problem: Solution: /plugins/wp-seo-multilingual/classes/Shared/Sitemap/BaseAlternateLangHooks.php . addAlternateLangData function around line 59. list( $elements, $getPermalink, $isIndexable ) = $this->getEntryHelpers( $type, $obj ); , insert the following code: // Exclude hidden language posts
global $sitepress;
$hidden_languages = $sitepress->get_setting( 'hidden_languages', [] );
if ( $elements && !empty($hidden_languages) ) {
foreach ( $elements as $lang => $element ) {
if ( in_array( $lang, $hidden_languages ) ) {
unset( $elements[$lang] );
}
}
}This code will exclude posts in hidden languages from appearing in the sitemap's alternate language data. Please note that this solution might become outdated or may not apply to your specific case. We highly recommend checking related known issues at https://wpml.org/known-issues/, verifying the version of the permanent fix, and confirming that you have installed the latest versions of themes and plugins. If the issue persists, please open a new support ticket at WPML support forum. |
|
0 | 5 | 4 months trước |