<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>FeedWordPress &#187; Wiki Pages</title>
	<atom:link href="http://feedwordpress.radgeek.com/wiki/feed/" rel="self" type="application/rss+xml" />
	<link>http://feedwordpress.radgeek.com</link>
	<description>simple and flexible Atom/RSS syndication for WordPress</description>
	<lastBuildDate>Thu, 17 May 2012 15:22:50 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
		<item>
		<title>syndicated_item_link</title>
		<link>http://feedwordpress.radgeek.com/wiki/syndicated_item_link/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/syndicated_item_link/#comments</comments>
		<pubDate>Fri, 11 May 2012 12:55:13 +0000</pubDate>
		<dc:creator>Charles Johnson</dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/syndicated_item_link</guid>
		<description><![CDATA[Contents &#91; hide &#93; The syndicated_item_link hook allows you to write filters which alter or act on the permalink URL for posts that are syndicated by FeedWordPress. The hook passes two parameters to any registered filter functions: a string containing &#8230; <a href="http://feedwordpress.radgeek.com/wiki/syndicated_item_link/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>The <strong><code>syndicated_item_link</code></strong> hook allows you to write filters which alter or act on the <strong>permalink URL</strong> for posts that are syndicated by FeedWordPress. The hook passes two parameters to any registered filter functions: a string containing the URL of the item (which is usually a permalink to the item on the original source website), and an object of class <a  href="http://feedwordpress.radgeek.com/wiki/syndicatedpost">SyndicatedPost</a> representing the syndicated item as a whole.</p>
<a name='Sample'></a><h3>Sample</h3>
<p>This example rewrites permalinks to point to their record in the Internet Archive Wayback Machine. Probably not tremendously useful in practice, since items in the Wayback machine are usually embargoed for about half a year before they appear publicly.</p>
<pre><code>&lt;?php
/*
Plugin Name: FWP+: Wayback Permalinks
Plugin URI: http://feedwordpress.radgeek.com/wiki/syndicated_item_link/
Description: alters the permalinks titles of incoming syndicated posts to point to their record in the Internet Archive Wayback machine
Version: 2012.0511
Author: Charles Johnson
Author URI: http://radgeek.com/
License: GPL
<ul>
<li>/</li>
</ul>

<a href="http://codex.wordpress.org/Function_Reference/add_filter" title="wordpress: Function Reference/add_filter">add_filter</a>(
/*hook=*/ 'syndicated_item_link',
/*function=*/ 'fwp_wayback_link',
/*order=*/ 10,
/*arguments=*/ 2
);

/**
<ul>
<li> fwp_wayback_link: Gets the permalink of the syndication source and</li>
<li> rewrites it to point to the Wayback Machine URL for that link.</li>
<li></li>
<li> @param string $url The permalink of the syndicated item.</li>
<li> @param <a  href="http://feedwordpress.radgeek.com/wiki/syndicatedpost">SyndicatedPost</a> $post An object representing the syndicated post.</li>
<li>  The syndicated item data is contained in $post-&gt;item</li>
<li>  The syndication feed channel data is contained in $post-&gt;feed</li>
<li>  The subscription data is contained in $post-&gt;link</li>
<li> @return string The new permalink to use for the syndicated item.</li>
<li>/</li>
</ul>

function fwp_wayback_link ($url, $post) {
// Wayback links are easy to make. /*/${url} points to a list of all archived
// versions publicly available. /YYYYMMDDHHmmSS/${url} points to the
// snapshot of the site taken most recently before or at that timestamp.
$url = 'http://web.archive.org/web/*/' . $url;

// Send it back
return $url;
} /* fwp_wayback_link() */
</code></pre>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Fsyndicated_item_link%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/syndicated_item_link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add Attribution for FeedWordPress</title>
		<link>http://feedwordpress.radgeek.com/wiki/add-attribution-for-feedwordpress/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/add-attribution-for-feedwordpress/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 15:47:43 +0000</pubDate>
		<dc:creator>Charles Johnson</dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/add-attribution-for-feedwordpress</guid>
		<description><![CDATA[Contents &#91; hide &#93; Click the &#8220;Edit&#8221; tab to add content to this page. This page is a Wiki!&#160;Log in or register an account to edit.]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>Click the &#8220;Edit&#8221; tab to add content to this page.</p>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Fadd-attribution-for-feedwordpress%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/add-attribution-for-feedwordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What Do I Do When</title>
		<link>http://feedwordpress.radgeek.com/wiki/what-do-i-do-when/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/what-do-i-do-when/#comments</comments>
		<pubDate>Fri, 11 Nov 2011 15:39:42 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/what-do-i-do-when</guid>
		<description><![CDATA[Contents &#91; hide &#93; Click the &#8220;Edit&#8221; tab to add content to this page. This page is a Wiki!&#160;Log in or register an account to edit.]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>Click the &#8220;Edit&#8221; tab to add content to this page.</p>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Fwhat-do-i-do-when%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/what-do-i-do-when/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Filters</title>
		<link>http://feedwordpress.radgeek.com/wiki/filters/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/filters/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 16:55:33 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/filters</guid>
		<description><![CDATA[Contents &#91; hide &#93; Click the &#8220;Edit&#8221; tab to add content to this page. This page is a Wiki!&#160;Log in or register an account to edit.]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>Click the &#8220;Edit&#8221; tab to add content to this page.</p>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Ffilters%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/filters/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I remove title source etc that appear pre-filled in before the main portion of the excerpt in WordPress backend &#8211; and therefore in the posted excerpt if not taken out manually</title>
		<link>http://feedwordpress.radgeek.com/wiki/how-do-i-remove-title-source-etc-that-appear-pre-filled-in-before-the-main-portion-of-the-excerpt-in-wordpress-backend-and-therefore-in-the-posted-excerpt-if-not-taken-out-manually/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/how-do-i-remove-title-source-etc-that-appear-pre-filled-in-before-the-main-portion-of-the-excerpt-in-wordpress-backend-and-therefore-in-the-posted-excerpt-if-not-taken-out-manually/#comments</comments>
		<pubDate>Wed, 09 Nov 2011 15:41:47 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/how-do-i-remove-title-source-etc-that-appear-pre-filled-in-before-the-main-portion-of-the-excerpt-in-wordpress-backend-and-therefore-in-the-posted-excerpt-if-not-taken-out-manually</guid>
		<description><![CDATA[Contents &#91; hide &#93; Click the &#8220;Edit&#8221; tab to add content to this page. This page is a Wiki!&#160;Log in or register an account to edit.]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>Click the &#8220;Edit&#8221; tab to add content to this page.</p>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Fhow-do-i-remove-title-source-etc-that-appear-pre-filled-in-before-the-main-portion-of-the-excerpt-in-wordpress-backend-and-therefore-in-the-posted-excerpt-if-not-taken-out-manually%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/how-do-i-remove-title-source-etc-that-appear-pre-filled-in-before-the-main-portion-of-the-excerpt-in-wordpress-backend-and-therefore-in-the-posted-excerpt-if-not-taken-out-manually/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Add-On:Alternative Caching Options</title>
		<link>http://feedwordpress.radgeek.com/wiki/alternative-caching-options/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/alternative-caching-options/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 11:43:26 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/add-on/alternative-caching-options</guid>
		<description><![CDATA[Contents &#91; hide &#93; Click the &#8220;Edit&#8221; tab to add content to this page. This page is a Wiki!&#160;Log in or register an account to edit.]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>Click the &#8220;Edit&#8221; tab to add content to this page.</p>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Falternative-caching-options%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/alternative-caching-options/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>syndicated_item_created</title>
		<link>http://feedwordpress.radgeek.com/wiki/syndicated_item_created/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/syndicated_item_created/#comments</comments>
		<pubDate>Sun, 06 Nov 2011 11:31:40 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/syndicated_item_created</guid>
		<description><![CDATA[Contents &#91; hide &#93; Click the &#8220;Edit&#8221; tab to add content to this page. This page is a Wiki!&#160;Log in or register an account to edit.]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>Click the &#8220;Edit&#8221; tab to add content to this page.</p>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Fsyndicated_item_created%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/syndicated_item_created/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How Do I set noindex meta tag to all my syndicated posts This is an attempt to see if it helps to recover from the google panda release</title>
		<link>http://feedwordpress.radgeek.com/wiki/how-do-i-set-noindex-meta-tag-to-all-my-syndicated-posts-this-is-an-attempt-to-see-if-it-helps-to-recover-from-the-google-panda-release/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/how-do-i-set-noindex-meta-tag-to-all-my-syndicated-posts-this-is-an-attempt-to-see-if-it-helps-to-recover-from-the-google-panda-release/#comments</comments>
		<pubDate>Fri, 04 Nov 2011 00:46:30 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/how-do-i-set-noindex-meta-tag-to-all-my-syndicated-posts-this-is-an-attempt-to-see-if-it-helps-to-recover-from-the-google-panda-release</guid>
		<description><![CDATA[Contents &#91; hide &#93; Click the &#8220;Edit&#8221; tab to add content to this page. This page is a Wiki!&#160;Log in or register an account to edit.]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>Click the &#8220;Edit&#8221; tab to add content to this page.</p>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Fhow-do-i-set-noindex-meta-tag-to-all-my-syndicated-posts-this-is-an-attempt-to-see-if-it-helps-to-recover-from-the-google-panda-release%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/how-do-i-set-noindex-meta-tag-to-all-my-syndicated-posts-this-is-an-attempt-to-see-if-it-helps-to-recover-from-the-google-panda-release/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>schedule updates using a cron job</title>
		<link>http://feedwordpress.radgeek.com/wiki/schedule-updates-using-a-cron-job-2/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/schedule-updates-using-a-cron-job-2/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 22:01:37 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/schedule-updates-using-a-cron-job</guid>
		<description><![CDATA[Contents &#91; hide &#93; Click the &#8220;Edit&#8221; tab to add content to this page. This page is a Wiki!&#160;Log in or register an account to edit.]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>Click the &#8220;Edit&#8221; tab to add content to this page.</p>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Fschedule-updates-using-a-cron-job-2%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/schedule-updates-using-a-cron-job-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Schedule updates using a cron job</title>
		<link>http://feedwordpress.radgeek.com/wiki/schedule-updates-using-a-cron-job/</link>
		<comments>http://feedwordpress.radgeek.com/wiki/schedule-updates-using-a-cron-job/#comments</comments>
		<pubDate>Wed, 02 Nov 2011 21:56:52 +0000</pubDate>
		<dc:creator></dc:creator>
		
		<guid isPermaLink="false">http://feedwordpress.radgeek.com/wiki/schedule-updates-using-a-cron-job</guid>
		<description><![CDATA[Contents &#91; hide &#93; Click the &#8220;Edit&#8221; tab to add content to this page. This page is a Wiki!&#160;Log in or register an account to edit.]]></description>
			<content:encoded><![CDATA[<div id="wpw_read_div" ><div class='contents alignright'><h3>Contents</h3><p> &#91; <a class='show' onclick='toggle_hide_show(this)'>hide</a> &#93; </p><ol class='content_list'></ol></div><p>Click the &#8220;Edit&#8221; tab to add content to this page.</p>
</div>This page is a Wiki!&nbsp;<a href="http://feedwordpress.radgeek.com/wp-login.php?redirect_to=http%3A%2F%2Ffeedwordpress.radgeek.com%2Fwiki%2Fschedule-updates-using-a-cron-job%2F">Log in or register an account to edit.</a>]]></content:encoded>
			<wfw:commentRss>http://feedwordpress.radgeek.com/wiki/schedule-updates-using-a-cron-job/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

