• Hello all,

    my aim is to show summary text in the rss feed item content.
    Unfortunately the posts were only showed in full text.

    On a test system i try to investigate, since when the rss feed turns to full text.
    1. Installation wp 3.5 -> summary and full text worked fine.
    Settings -> Reading -> summary or. full text.
    2. I load up a theme that i have bought by themeforest.org
    3. I activate the theme.

    At that step the rss feed posts are all shown in full text.

    Did anybody know which file is responsible for the full and summary settings in the wordpress installation. I want statically disable full text.

    Thanks in advance.

    Kind Regards
    George

Viewing 1 replies (of 1 total)
  • Thread Starter ncc16

    (@ncc16)

    i investigate and that is the solution.

    add_filter(‘the_excerpt_rss’, ‘gdl_excerpt_rss’);
    function gdl_excerpt_rss($excerpt) {
    return mb_substr($excerpt, 0, 300) . ‘…’;
    }

    copy in function.php

Viewing 1 replies (of 1 total)

The topic ‘rss feed shows only full text’ is closed to new replies.