PDA

View Full Version : feeds for featured links only


bschneider5
07-31-2006, 11:36 PM
Can I modify my rss file somehow to pull only featured links into a feed?

KartKorner
08-01-2006, 04:19 AM
how do you currently pull your links into a feed? Do not have a rss feed installed wit mine but if you pull them in via a variable then you could just create a variable for featured only links then call upon that variable.

bschneider5
08-03-2006, 10:16 PM
Yeah, here is my RSS2 file, what would I need to change, and to what?
Content visible to registered users only.

anon
08-03-2006, 10:32 PM
try this:

Content visible to registered users only.

Boby
08-03-2006, 11:01 PM
Isn't it a lot easyier to do it via SQL and save a lot more memory too?

You should have this in rss.php:
Content visible to registered users only.
Replace with:
Content visible to registered users only.

Boby

bschneider5
08-04-2006, 12:38 AM
Content visible to registered users only.
Will this pull only featured links?

anon
08-04-2006, 02:21 AM
Content visible to registered users only.
AND `FEATURED` = '1'";


yes.

bschneider5
08-04-2006, 09:34 PM
Could I create another rss file, so that my old feed will still work?

Boby
08-04-2006, 11:17 PM
Sure you can :)

Just create a new file let's say rss-featured.php but keep the rest of the code from rss.php and add the above change ;)

bschneider5
08-04-2006, 11:37 PM
Thanks, I'll try that! WIll I need to also do anything with the template file?