PluginProbe
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO / 2.7.0
ThinkRank AI SEO – AI SEO Plugin for WordPress: Schema, XML Sitemaps, Meta Tags, Search Console & Local SEO v2.7.0
2.7.0 2.6.0 2.5.0 2.4.0 2.3.0 2.2.0 2.1.1 2.1.0 2.0.2 2.0.1 2.0.0 1.32.0 1.31.0 1.30.0 1.29.0 1.28.0 1.27.0 1.26.0 1.25.0 trunk 1.0.0 1.0.1 1.0.2 1.1.0 1.10.0 All 48 releases
← All changes | includes/seo/class-content-optimization-manager.php +1 -1 2.0.22.7.0 View file →
@@ -1049,9 +1049,9 @@
1049 1049 // Get recent posts for blog homepage
1050 1050 $recent_posts = get_posts(['numberposts' => 3]);
1051 1051 $content_parts = [];
1052 1052 foreach ($recent_posts as $post) {
1053 - $content_parts[] = $post->post_title . ' ' . wp_trim_words($post->post_content, 100);
1053 + $content_parts[] = $post->post_title . ' ' . \ThinkRank\Core\Seo_Text::trim_words($post->post_content, 100, '...', 1000);
1054 1054 }
1055 1055 $content = implode(' ', $content_parts);
1056 1056 }
1057 1057 break;