Tweaking functions.php to limit text shown in RSS feeds?
-
How can I use code for a filter in functions.php to limit the characters/text size in my RSS feeds?
I am trying to use the following code to show 10 words but it is not working:
function myFilterShortenRSS($query) { if ($query->the_content_rss) { $query->set('','','10'); } return $query; } add_filter('pre_get_posts','myFilterShortenRSS');
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘Tweaking functions.php to limit text shown in RSS feeds?’ is closed to new replies.