Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Back End Help needed kinda fast for defining a previous loop output

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #25243
    mattvot
    Member

    I have a client using simple press forum plugin for wordpress and needs to limit the rss feed.

    Here’s a relevant part:

    Code:


    <?php sf_rss_filter($item->title) ?> link) ?>
    category) ?>
    guid) ?>
    description) ?>]]> pubDate) ?>

    What I need to do is make sure that if the title has been outputted before it does not show again, so there is no duplicates. Any ideas?

    I was thinking of an if statment working on past outputs, but I don’t know how.

    #59611
    Argeaux
    Participant

    does this work?

    Code:
    title,$array)){
    ?>

    <?php sf_rss_filter($item->title) ?> link) ?>
    category) ?>
    guid) ?>
    description) ?>]]> pubDate) ?>

    title);
    }
    }
    }
    ?>
    #59643
    mattvot
    Member

    Yes it did! Thank you so so much!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Back End’ is closed to new topics and replies.