Textpattern CMS support forum
You are not logged in. Register | Login | Help
- Topics: Active | Unanswered
Pages: 1
#1 2010-05-27 21:51:50
- steffen
- Member
- Registered: 2009-12-13
- Posts: 17
custom feed (title) again
hey,
i know there are already a lot of topics
to this issue. but here is my special request:
1. i have on my article posts a TITLE
+ a subtitle which is generated by a
custom field.
looks like this:
————————————————————————————
TEXTPATTERN
the new awesome open source thing
————————————————————————————-
now i want to include also the subtitle in the
title of my rss & atom feed. like:
“TEXTPATTERN — the new awesome open source thing”
2. the site has already a lot of users, so i dont want
to create a new section like “myrss”. because they all
would have to renew their subscription
3. so is there a possibilty to include the
subtitle-custom field anywhere in the publish/rss.php?
if yes, where? or do you have any other ideas to solve this problem?
———
thanks for your time because you read this and of course your help
Last edited by steffen (2010-05-27 21:52:46)
Offline
Re: custom feed (title) again
Hi steffen,
there are a few plugins that will let you customize your feeds. For example, rah_external_output or atb_customize_feed, but there are others too.
Offline
#3 2010-05-28 10:50:01
- makss
- Plugin Author
- From: Ukraine
- Registered: 2008-10-21
- Posts: 355
Re: custom feed (title) again
steffen wrote:
2. the site has already a lot of users, so i dont want
to create a new section like “myrss”. because they all
would have to renew their subscription
Use .htaccess for it.
RewriteRule ^rss.php$ /myrss/newfeed.xml
or
RewriteCond %{REQUEST_URI} ^/rss.php$
RewriteRule ^(.*) /myrss/newfeed.xml
Where rss.php – old feed, /myrss/newfeed.xml – new feed.
ps: please, check syntax in my samples…
aks_cron : Cron inside Textpattern | aks_article : extended article_custom tag
aks_cache : cache for TxP | aks_dragdrop : Drag&Drop categories (article, link, image, file)
Offline
Pages: 1