<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Create Custom RSS Feed With Views Module in Drupal</title>
	<atom:link href="http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/feed" rel="self" type="application/rss+xml" />
	<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html</link>
	<description>Computer Tips and Information Technology News</description>
	<lastBuildDate>Wed, 28 Dec 2011 12:41:46 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
	<item>
		<title>By: Katrina kaif Pictures</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-5019</link>
		<dc:creator>Katrina kaif Pictures</dc:creator>
		<pubDate>Fri, 11 Nov 2011 04:35:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-5019</guid>
		<description>Thank dear nice page have more information about drupl.</description>
		<content:encoded><![CDATA[<p>Thank dear nice page have more information about drupl.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kunal</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-4981</link>
		<dc:creator>Kunal</dc:creator>
		<pubDate>Sat, 04 Jun 2011 11:31:59 +0000</pubDate>
		<guid isPermaLink="false">#comment-4981</guid>
		<description>I want to only show title and Term Name in title. How this can be done?</description>
		<content:encoded><![CDATA[<p>I want to only show title and Term Name in title. How this can be done?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kareena</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-4823</link>
		<dc:creator>Kareena</dc:creator>
		<pubDate>Sat, 10 Jul 2010 09:24:03 +0000</pubDate>
		<guid isPermaLink="false">#comment-4823</guid>
		<description>Thank dear nice page have more information about drupl..</description>
		<content:encoded><![CDATA[<p>Thank dear nice page have more information about drupl..</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: W</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-4795</link>
		<dc:creator>W</dc:creator>
		<pubDate>Tue, 16 Mar 2010 14:31:06 +0000</pubDate>
		<guid isPermaLink="false">#comment-4795</guid>
		<description>Excellent. A very well presented, useful tutorial.

Thanks.</description>
		<content:encoded><![CDATA[<p>Excellent. A very well presented, useful tutorial.</p>
<p>Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Karlin</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-4791</link>
		<dc:creator>David Karlin</dc:creator>
		<pubDate>Tue, 09 Mar 2010 16:59:42 +0000</pubDate>
		<guid isPermaLink="false">#comment-4791</guid>
		<description>Not sure what happened to the code in the above post. The beginning got chopped off. Here&#039;s another go, leaving out the PHP tags that surrounded it:

&lt;code&gt;
drupal_add_link(array(&#039;rel&#039;=&gt;&quot;alternate&quot;,&#039;type&#039;=&gt;&quot;application/rss+xml&quot;,&#039;title&#039;=&gt;&quot;My RSS feed about something or other&quot;,&#039;href&#039;=&gt;&quot;http://www.mywebsite.com/feed/drupalCMS&quot;));
&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>Not sure what happened to the code in the above post. The beginning got chopped off. Here&#8217;s another go, leaving out the PHP tags that surrounded it:</p>
<p><code><br />
drupal_add_link(array('rel'=&gt;"alternate",'type'=&gt;"application/rss+xml",'title'=&gt;"My RSS feed about something or other",'href'=&gt;"http://www.mywebsite.com/feed/drupalCMS"));<br />
</code></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: David Karlin</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-4790</link>
		<dc:creator>David Karlin</dc:creator>
		<pubDate>Tue, 09 Mar 2010 16:57:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-4790</guid>
		<description>Really useful post. But there&#039;s one final step missing, which is how to add that little &quot;RSS feed&quot; icon to go into your browser&#039;s address bar (or wherever your browser puts it).

There are probably many ways of doing this: here&#039;s how I managed it. I created a block with some PHP code to add the RSS feed link into the HTML header. Remember to set the block to permit PHP code, and set the block to display only on the pages which you want to connect to this feed - which means the URL of your main view. I displayed my block in the header zone of my page - I don&#039;t think it matters much. Here&#039;s the code (substitute your preferred title and the full URL of the feed view that you just created using the contents of this post).
&lt;code&gt;
&quot;alternate&quot;,&#039;type&#039;=&gt;&quot;application/rss+xml&quot;,&#039;title&#039;=&gt;&quot;My RSS feed about something or other&quot;,&#039;href&#039;=&gt;&quot;http://www.mywebsite.com/feed/drupalCMS&quot;));
?&gt;
&lt;/code&gt;

Hope this helps someone!</description>
		<content:encoded><![CDATA[<p>Really useful post. But there&#8217;s one final step missing, which is how to add that little &#8220;RSS feed&#8221; icon to go into your browser&#8217;s address bar (or wherever your browser puts it).</p>
<p>There are probably many ways of doing this: here&#8217;s how I managed it. I created a block with some PHP code to add the RSS feed link into the HTML header. Remember to set the block to permit PHP code, and set the block to display only on the pages which you want to connect to this feed &#8211; which means the URL of your main view. I displayed my block in the header zone of my page &#8211; I don&#8217;t think it matters much. Here&#8217;s the code (substitute your preferred title and the full URL of the feed view that you just created using the contents of this post).<br />
<code><br />
"alternate",'type'=&gt;"application/rss+xml",'title'=&gt;"My RSS feed about something or other",'href'=&gt;"http://www.mywebsite.com/feed/drupalCMS"));<br />
?&gt;<br />
</code></p>
<p>Hope this helps someone!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: w3wall</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-4788</link>
		<dc:creator>w3wall</dc:creator>
		<pubDate>Wed, 24 Feb 2010 14:32:49 +0000</pubDate>
		<guid isPermaLink="false">#comment-4788</guid>
		<description>Thank you for support to learn feed via view.</description>
		<content:encoded><![CDATA[<p>Thank you for support to learn feed via view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Austin</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-4626</link>
		<dc:creator>Austin</dc:creator>
		<pubDate>Sun, 22 Mar 2009 07:59:26 +0000</pubDate>
		<guid isPermaLink="false">#comment-4626</guid>
		<description>Thanks for this tutorial, for some odd reason I&#039;d never thought to do custom feeds using views.  On our site, I&#039;d been looking for a way to do both teaser-style AND full feed rss feeds, without much luck, until I ran into your site.  Thanks!</description>
		<content:encoded><![CDATA[<p>Thanks for this tutorial, for some odd reason I&#8217;d never thought to do custom feeds using views.  On our site, I&#8217;d been looking for a way to do both teaser-style AND full feed rss feeds, without much luck, until I ran into your site.  Thanks!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adam Crymble</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-2577</link>
		<dc:creator>Adam Crymble</dc:creator>
		<pubDate>Thu, 18 Dec 2008 16:19:15 +0000</pubDate>
		<guid isPermaLink="false">#comment-2577</guid>
		<description>Thank you, that was very clear and helpful</description>
		<content:encoded><![CDATA[<p>Thank you, that was very clear and helpful</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: raghu</title>
		<link>http://www.geektips.net/44/create-custom-rss-feed-with-views-module-in-drupal.html/comment-page-1#comment-62</link>
		<dc:creator>raghu</dc:creator>
		<pubDate>Wed, 30 Nov -0001 00:00:00 +0000</pubDate>
		<guid isPermaLink="false">#comment-62</guid>
		<description>Thanks a lot for this, atleast i got to see RSS link :)

Do you know of any good tutorials on how to publish rss feeds using drupal?</description>
		<content:encoded><![CDATA[<p>Thanks a lot for this, atleast i got to see RSS link <img src='http://www.geektips.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Do you know of any good tutorials on how to publish rss feeds using drupal?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

