<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" version="2.0">

<channel>
	<title>AutoBlogged</title>
	
	<link>http://autoblogged.com</link>
	<description>WordPress AutoBlog Plugin</description>
	<lastBuildDate>Fri, 12 Mar 2010 04:01:22 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/autoblogged" /><feedburner:info xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" uri="autoblogged" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><image><link>http://www.autoblogged.com</link><url>http://autoblogged.com/i/autoblogged2-sm.jpg</url><title>AutoBlogged</title></image><feedburner:emailServiceId xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">autoblogged</feedburner:emailServiceId><feedburner:feedburnerHostname xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0">http://feedburner.google.com</feedburner:feedburnerHostname><item>
		<title>How to Include Blocked HTML Tags</title>
		<link>http://autoblogged.com/kb/post-templates/include-blocked-tags/</link>
		<comments>http://autoblogged.com/kb/post-templates/include-blocked-tags/#comments</comments>
		<pubDate>Wed, 10 Mar 2010 22:40:32 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Post Templates]]></category>
		<category><![CDATA[embed]]></category>
		<category><![CDATA[form]]></category>
		<category><![CDATA[frames]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[javascript]]></category>
		<category><![CDATA[object]]></category>
		<category><![CDATA[tags]]></category>
		<category><![CDATA[video]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4907</guid>
		<description><![CDATA[<p>For security reasons AutoBlogged strips out certain HTML tags by default. These filtered tags include those for embedding objects, forms, frames, and scripts. It would be fairly simple for someone to inject malicious content into your blog using these tags.</p>
<p>However, if you only pull content from trusted sources, you can configure AutoBlogged to allow certain tags. This is useful, for example, to include content such as videos embedded using the OBJECT tag.</p>
<p>To include these tags, you need to open autoblogged.php in a text editor and search for this code block:</p>
<pre>define("ALLOW_OBJECT_AND_EMBED_TAGS", false);  // Allows object, embed, param
define("ALLOW_FORM_TAGS", false);  // Allows form, input
define("ALLOW_FRAME_TAGS", false); // Allows frame, iframe, frameset
define("ALLOW_SCRIPT_TAGS", false); // Allows class, expr, script, noscript...
</pre>
<p>These settings allow you to include specific sets of tags by changing the <em>false </em>to <em>true</em>. For example, if you want to include videos that use the OBJECT or EMBED tags, change the first line to this:</p>
<pre>define("ALLOW_OBJECT_AND_EMBED_TAGS", true);  // Allows object, embed, param
</pre>
<p>After editing these settings, save the file and upload the changes to your server.</p>
<p>It is important to note that if you use the %excerpt% variable in your post template, these settings will have no effect. This is because the %excerpt% variable is simply a text-only excerpt of the content. If you wish to include these HTML tags, you should use other variables such as %content%, %description%, or %content:encoded%, depending on how your feed is configured.  Note also that AutoBlogged may not automatically recognize certain embedded videos, so the %video% variable may not work properly.</p>
<p>Right below this section there are also two other related settings:</p>
<pre>// This turns off all HTML tag and attribute filtering.
define("ALLOW_ALL_TAGS", false);
</pre>
<p>If you set this value to true, all HTML tags will be included in each post. We certainly do not recommend this setting.</p>
<pre>// Set the next line to true if you want HTML tags encoded rather than stripped out
define("ENCODE_INSTEAD_OF_STRIP", false);
</pre>
<p>This setting will include all HTML tags, but will encode these tags to deactivate them. Encoded HTML will display as part of the content. This is useful, for example, when the content contains unencoded code samples.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 145px; width: 1px; height: 1px; overflow: hidden;">// This turns off all HTML tag and attribute filtering.<br />
define(&#8220;ALLOW_ALL_TAGS&#8221;, false);</p>
<p>// Set the next line to true if you want HTML tags encoded rather than stripped out<br />
define(&#8220;ENCODE_INSTEAD_OF_STRIP&#8221;, false);</p>
</div>
<hr />]]></description>
			<content:encoded><![CDATA[<p>For security reasons AutoBlogged strips out certain HTML tags by default. These filtered tags include those for embedding objects, forms, frames, and scripts. It would be fairly simple for someone to inject malicious content into your blog using these tags.</p>
<p>However, if you only pull content from trusted sources, you can configure AutoBlogged to allow certain tags. This is useful, for example, to include content such as videos embedded using the OBJECT tag.</p>
<p>To include these tags, you need to open autoblogged.php in a text editor and search for this code block:</p>
<pre>define("ALLOW_OBJECT_AND_EMBED_TAGS", false);  // Allows object, embed, param
define("ALLOW_FORM_TAGS", false);  // Allows form, input
define("ALLOW_FRAME_TAGS", false); // Allows frame, iframe, frameset
define("ALLOW_SCRIPT_TAGS", false); // Allows class, expr, script, noscript...
</pre>
<p>These settings allow you to include specific sets of tags by changing the <em>false </em>to <em>true</em>. For example, if you want to include videos that use the OBJECT or EMBED tags, change the first line to this:</p>
<pre>define("ALLOW_OBJECT_AND_EMBED_TAGS", true);  // Allows object, embed, param
</pre>
<p>After editing these settings, save the file and upload the changes to your server.</p>
<p>It is important to note that if you use the %excerpt% variable in your post template, these settings will have no effect. This is because the %excerpt% variable is simply a text-only excerpt of the content. If you wish to include these HTML tags, you should use other variables such as %content%, %description%, or %content:encoded%, depending on how your feed is configured.  Note also that AutoBlogged may not automatically recognize certain embedded videos, so the %video% variable may not work properly.</p>
<p>Right below this section there are also two other related settings:</p>
<pre>// This turns off all HTML tag and attribute filtering.
define("ALLOW_ALL_TAGS", false);
</pre>
<p>If you set this value to true, all HTML tags will be included in each post. We certainly do not recommend this setting.</p>
<pre>// Set the next line to true if you want HTML tags encoded rather than stripped out
define("ENCODE_INSTEAD_OF_STRIP", false);
</pre>
<p>This setting will include all HTML tags, but will encode these tags to deactivate them. Encoded HTML will display as part of the content. This is useful, for example, when the content contains unencoded code samples.</p>
<div id="_mcePaste" style="position: absolute; left: -10000px; top: 145px; width: 1px; height: 1px; overflow: hidden;">// This turns off all HTML tag and attribute filtering.<br />
define(&#8220;ALLOW_ALL_TAGS&#8221;, false);</p>
<p>// Set the next line to true if you want HTML tags encoded rather than stripped out<br />
define(&#8220;ENCODE_INSTEAD_OF_STRIP&#8221;, false);</p>
</div>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/post-templates/include-blocked-tags/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using AutoBlogged with TimThumb and Premium Themes</title>
		<link>http://autoblogged.com/kb/images-and-videos/autoblogged-and-thumbnails/</link>
		<comments>http://autoblogged.com/kb/images-and-videos/autoblogged-and-thumbnails/#comments</comments>
		<pubDate>Sun, 21 Feb 2010 00:49:10 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Images and Videos]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[Themes]]></category>
		<category><![CDATA[thumbnails]]></category>
		<category><![CDATA[thumbs]]></category>
		<category><![CDATA[timthumb]]></category>
		<category><![CDATA[viva]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4847</guid>
		<description><![CDATA[<p>AutoBlogged has a built-in thumbnail feature that automatically creates thumbnails for images in posts. However, a number of premium themes use their own scripts such as TimThumb or Viva Thumbs for handling thumbnails. Because these scripts often use the same custom WordPress fields that AutoBlogged uses, you will sometimes see HTML code or an error message in place of the thumbnail image.</p>
<p>AutoBlogged automatically adds the custom fields <em>image </em>and <em>thumbnail </em>that contain the HTML IMG tag to display the image. However, some themes or thumbnail plugins also uses this custom field but expect it to contain a relative path to the image file.<em> </em></p>
<p>For example, the <em>image </em>custom field might contain something like this:</p>
<p><em>&lt;img src=&#8221;http://example.com/wp-content/uploads/2010/02/xxxxxxxxxx.jpg&#8221; /&gt;</em></p>
<p>But your theme expects to see something like this:</p>
<p><em>/wp-content/uploads/2010/02/xxxxxxxxxx.jpg</em><br />
<em> </em></p>
<p>Using the AutoBlogged custom fields feature you can easily change the format of the <em>image </em>or <em>thumbnail </em>custom fields to provide the image format you need. You may need to review the documentation for the theme or script to determine which custom field name it is looking for and how it wants image paths formatted.</p>
<p><strong>Using Custom Fields<br />
</strong></p>
<p>Depending on how your theme or thumbnail script expects to see the image path, you can use different custom field settings. Below are the three most common cases we see.</p>
<p>Note that depending on your theme or script, you may need to use a different custom field name such as <em>Image</em>, <em>Thumbnail</em>, etc. Keep in mind that in WordPress, case is important so a field named <em>image </em>is not the same as one named <em>Image</em>.</p>
<p><strong>1. The script expects a full HTTP URL to the image</strong></p>
<p>Set up a custom field with these values:</p>
<p>Custom Field: <em>image</em></p>
<p>Custom Field Value: <em>%image_url%</em></p>
<p><em><br />
</em></p>
<p><strong>2. The script expects a file path relative to your web root</strong></p>
<p>First, check the feed setting <em>Save local copies of all images in the feed</em> and uncheck the setting <em>Create local thumbnails for each image</em>. Then set up a custom field with these values:</p>
<p>Custom Field: <em>image</em></p>
<p>Custom Field Value: <em>%image_path%</em></p>
<p><em><br />
</em></p>
<p><strong>3. The script expects a file path relative to the WordPress uploads directory:</strong></p>
<p>First, check the feed setting <em>Save local copies of all images in the feed</em> and uncheck the setting <em>Create local thumbnails for each image</em>.</p>
<p>Next, set up a search and replace with these values:</p>
<p>Search for: <em>/wp-content/uploads/</em></p>
<p>Replace with: <em> /</em></p>
<p>Then set up a custom field with these values:</p>
<p>Custom Field: <em>image</em></p>
<p>Custom Field Value: <em>%image_path%</em></p>
<p><em><br />
</em></p>
<p>The Custom Field Value uses the same syntax as post templates, so you can use any variable that you would use there. Here are the image-related variables available:</p>
<p>%image% &#8211; The full HTML IMG tag to display an image, for example &lt;img src=&#8221;http://farm3.static.flickr.com/2712/xxxxxxxx.jpg&#8221; /&gt;</p>
<p>%image_url% &#8211; The full URL to the image, for example http://farm3.static.flickr.com/2712/xxxxxxxx.jpg</p>
<p>%image_path% &#8211; The relative path to the image, normally useful only if you cache images locally, for example /wp-content/uploads/2010/02/xxxxx-150&#215;93.jpg</p>
<p>%thumbnail% &#8211; The full HTML IMG tag to display the locally created image thumbnail, for example &lt;img src=&#8221;http://example.com/wp-content/uploads/2010/02/xxxxx-150&#215;93.jpg&#8221; /&gt;</p>
<p>%thumbnail_url% &#8211; The full URL to the thumbnail, for example http://example.com/wp-content/uploads/2010/02/xxxxx-150&#215;93.jpg</p>
<p>%thumbnail_path% &#8211; The relative path to the thumbnail, normally useful only if you cache images locally, for example /wp-content/uploads/2010/02/xxxxx-150&#215;93.jpg</p>
<p>If you come across any situations where you need to set up custom fields to get your theme or plugins to work correctly, we&#8217;d like to hear about them in the comments below.</p>
<hr />]]></description>
			<content:encoded><![CDATA[<p>AutoBlogged has a built-in thumbnail feature that automatically creates thumbnails for images in posts. However, a number of premium themes use their own scripts such as TimThumb or Viva Thumbs for handling thumbnails. Because these scripts often use the same custom WordPress fields that AutoBlogged uses, you will sometimes see HTML code or an error message in place of the thumbnail image.</p>
<p>AutoBlogged automatically adds the custom fields <em>image </em>and <em>thumbnail </em>that contain the HTML IMG tag to display the image. However, some themes or thumbnail plugins also uses this custom field but expect it to contain a relative path to the image file.<em> </em></p>
<p>For example, the <em>image </em>custom field might contain something like this:</p>
<p><em>&lt;img src=&#8221;http://example.com/wp-content/uploads/2010/02/xxxxxxxxxx.jpg&#8221; /&gt;</em></p>
<p>But your theme expects to see something like this:</p>
<p><em>/wp-content/uploads/2010/02/xxxxxxxxxx.jpg</em><br />
<em> </em></p>
<p>Using the AutoBlogged custom fields feature you can easily change the format of the <em>image </em>or <em>thumbnail </em>custom fields to provide the image format you need. You may need to review the documentation for the theme or script to determine which custom field name it is looking for and how it wants image paths formatted.</p>
<p><strong>Using Custom Fields<br />
</strong></p>
<p>Depending on how your theme or thumbnail script expects to see the image path, you can use different custom field settings. Below are the three most common cases we see.</p>
<p>Note that depending on your theme or script, you may need to use a different custom field name such as <em>Image</em>, <em>Thumbnail</em>, etc. Keep in mind that in WordPress, case is important so a field named <em>image </em>is not the same as one named <em>Image</em>.</p>
<p><strong>1. The script expects a full HTTP URL to the image</strong></p>
<p>Set up a custom field with these values:</p>
<p>Custom Field: <em>image</em></p>
<p>Custom Field Value: <em>%image_url%</em></p>
<p><em><br />
</em></p>
<p><strong>2. The script expects a file path relative to your web root</strong></p>
<p>First, check the feed setting <em>Save local copies of all images in the feed</em> and uncheck the setting <em>Create local thumbnails for each image</em>. Then set up a custom field with these values:</p>
<p>Custom Field: <em>image</em></p>
<p>Custom Field Value: <em>%image_path%</em></p>
<p><em><br />
</em></p>
<p><strong>3. The script expects a file path relative to the WordPress uploads directory:</strong></p>
<p>First, check the feed setting <em>Save local copies of all images in the feed</em> and uncheck the setting <em>Create local thumbnails for each image</em>.</p>
<p>Next, set up a search and replace with these values:</p>
<p>Search for: <em>/wp-content/uploads/</em></p>
<p>Replace with: <em> /</em></p>
<p>Then set up a custom field with these values:</p>
<p>Custom Field: <em>image</em></p>
<p>Custom Field Value: <em>%image_path%</em></p>
<p><em><br />
</em></p>
<p>The Custom Field Value uses the same syntax as post templates, so you can use any variable that you would use there. Here are the image-related variables available:</p>
<p>%image% &#8211; The full HTML IMG tag to display an image, for example &lt;img src=&#8221;http://farm3.static.flickr.com/2712/xxxxxxxx.jpg&#8221; /&gt;</p>
<p>%image_url% &#8211; The full URL to the image, for example http://farm3.static.flickr.com/2712/xxxxxxxx.jpg</p>
<p>%image_path% &#8211; The relative path to the image, normally useful only if you cache images locally, for example /wp-content/uploads/2010/02/xxxxx-150&#215;93.jpg</p>
<p>%thumbnail% &#8211; The full HTML IMG tag to display the locally created image thumbnail, for example &lt;img src=&#8221;http://example.com/wp-content/uploads/2010/02/xxxxx-150&#215;93.jpg&#8221; /&gt;</p>
<p>%thumbnail_url% &#8211; The full URL to the thumbnail, for example http://example.com/wp-content/uploads/2010/02/xxxxx-150&#215;93.jpg</p>
<p>%thumbnail_path% &#8211; The relative path to the thumbnail, normally useful only if you cache images locally, for example /wp-content/uploads/2010/02/xxxxx-150&#215;93.jpg</p>
<p>If you come across any situations where you need to set up custom fields to get your theme or plugins to work correctly, we&#8217;d like to hear about them in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/images-and-videos/autoblogged-and-thumbnails/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Posts Truncated after Non-Breaking Spaces</title>
		<link>http://autoblogged.com/kb/known-issues/truncated-posts/</link>
		<comments>http://autoblogged.com/kb/known-issues/truncated-posts/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 03:20:24 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Known Issues]]></category>
		<category><![CDATA[autoblogger]]></category>
		<category><![CDATA[cut-off]]></category>
		<category><![CDATA[nbsp]]></category>
		<category><![CDATA[posts]]></category>
		<category><![CDATA[rss-feed]]></category>
		<category><![CDATA[Search and Replace]]></category>
		<category><![CDATA[truncated]]></category>
		<category><![CDATA[wp autoblog]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4831</guid>
		<description><![CDATA[<p>You may run across a feed that gets truncated when imported into WordPress. Typically, the cutoff occurs after a non-breaking space (&amp;nbsp;) in the feed. Sometimes this issue also shows up as an AutoBlogged post that contains the feed content but does not contain the attribution link to the original article.</p>
<p><strong>Problem</strong></p>
<p>In our research of this issue, we have determined that the entire post is intact when we pass it on to the WordPress API. The cutoff occurs during WordPress&#8217; handling of the post. Although this is technically a WordPress issue, we do know that the problem is due to non-breaking spaces so we can just trim those off before we pass the post to WordPress. We will address this issue in our next AutoBlogged update.</p>
<p>In the meantime, however, we have identified a workaround that does fix this issue.</p>
<p><strong>Solution</strong></p>
<p>Until our next AutoBlogged update, you can use the following workaround to deal with this issue:</p>
<p>First, go into the settings for your feed and scroll to the <strong>Search and Replace</strong> section at the bottom of the page. In the<strong> Search for</strong> box, enter <em>&amp;nbsp;</em> and in the <strong>Replace with</strong> box type a single space as shown below:</p>
<p><a href="http://autoblogged.com/wp-content/uploads/2010/01/sar2.png"><img class="alignnone size-full wp-image-4838" title="Search and Replace" src="http://autoblogged.com/wp-content/uploads/2010/01/sar2.png" alt="AutoBlogged Search and Replace" width="560" height="169" /></a></p>
<p>After you set up this search and replace, you need to modify your post template, replacing all instances of <em>%excerpt%</em> or <em>%content%</em> with <em>%description%</em>.</p>
<p>For example, your new post template may look like this:</p>
<pre>&lt;p&gt;%description%&lt;/p&gt;</pre>
<pre>%if:video%&lt;p&gt;%video%&lt;/p&gt;%endif:video%
%if:thumbnail%&lt;p&gt;%thumbnail%&lt;/p&gt;%endif:thumbnail%</pre>
<pre>[Read more here|Read the original here|Read more from the original source]
&lt;a target="_blank" href="%link%" title="%title%"&gt;%title%&lt;/a&gt;
</pre>
<p>After making these changes, you should no longer have issues with truncated posts.</p>
<hr />]]></description>
			<content:encoded><![CDATA[<p>You may run across a feed that gets truncated when imported into WordPress. Typically, the cutoff occurs after a non-breaking space (&amp;nbsp;) in the feed. Sometimes this issue also shows up as an AutoBlogged post that contains the feed content but does not contain the attribution link to the original article.</p>
<p><strong>Problem</strong></p>
<p>In our research of this issue, we have determined that the entire post is intact when we pass it on to the WordPress API. The cutoff occurs during WordPress&#8217; handling of the post. Although this is technically a WordPress issue, we do know that the problem is due to non-breaking spaces so we can just trim those off before we pass the post to WordPress. We will address this issue in our next AutoBlogged update.</p>
<p>In the meantime, however, we have identified a workaround that does fix this issue.</p>
<p><strong>Solution</strong></p>
<p>Until our next AutoBlogged update, you can use the following workaround to deal with this issue:</p>
<p>First, go into the settings for your feed and scroll to the <strong>Search and Replace</strong> section at the bottom of the page. In the<strong> Search for</strong> box, enter <em>&amp;nbsp;</em> and in the <strong>Replace with</strong> box type a single space as shown below:</p>
<p><a href="http://autoblogged.com/wp-content/uploads/2010/01/sar2.png"><img class="alignnone size-full wp-image-4838" title="Search and Replace" src="http://autoblogged.com/wp-content/uploads/2010/01/sar2.png" alt="AutoBlogged Search and Replace" width="560" height="169" /></a></p>
<p>After you set up this search and replace, you need to modify your post template, replacing all instances of <em>%excerpt%</em> or <em>%content%</em> with <em>%description%</em>.</p>
<p>For example, your new post template may look like this:</p>
<pre>&lt;p&gt;%description%&lt;/p&gt;</pre>
<pre>%if:video%&lt;p&gt;%video%&lt;/p&gt;%endif:video%
%if:thumbnail%&lt;p&gt;%thumbnail%&lt;/p&gt;%endif:thumbnail%</pre>
<pre>[Read more here|Read the original here|Read more from the original source]
&lt;a target="_blank" href="%link%" title="%title%"&gt;%title%&lt;/a&gt;
</pre>
<p>After making these changes, you should no longer have issues with truncated posts.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/known-issues/truncated-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Making External Links NoFollow</title>
		<link>http://autoblogged.com/kb/post-templates/no-follow-links/</link>
		<comments>http://autoblogged.com/kb/post-templates/no-follow-links/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 17:31:26 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Post Templates]]></category>
		<category><![CDATA[links]]></category>
		<category><![CDATA[nofollow]]></category>
		<category><![CDATA[Plugins]]></category>
		<category><![CDATA[seo]]></category>
		<category><![CDATA[wordpress-posts]]></category>
		<category><![CDATA[wp autoblog]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4824</guid>
		<description><![CDATA[<p>AutoBlogged post templates give you much flexibility in controlling how it creates posts in WordPress. If you want to configure all external links in your posts to use the <a title="NoFollow" href="http://en.wikipedia.org/wiki/Nofollow">nofollow</a> tag, you can do this through your post template.</p>
<p>By default, AutoBlogged uses the following post template:</p>
<pre>&lt;p&gt;%excerpt%&lt;/p&gt;
%if:video%&lt;p&gt;%video%&lt;/p&gt;%endif:video%
%if:thumbnail%&lt;p&gt;%thumbnail%&lt;/p&gt;%endif:thumbnail%
[Read more here|Read the original here|Read more from the original source|
Continued here|Read more|More here|View original post here|More|See more
here|See original here|Originally posted here|Here is the original post|See
the original post|The rest is here|Read the rest here|See the rest here|Go
here to read the rest|Go here to see the original|See the original post here
|Read the original post|Original post|Read the original|Link|Excerpt from|
View post|Visit link|Follow this link|Continue reading here|See the article
here|Read this article|Read more]:[&lt;br /&gt;| ]
&lt;a target="_blank" href="%link%" title="%title%"&gt;%title%&lt;/a&gt;
</pre>
<p>To give all external links the nofollow tag, simply change the last line of the post template to the following:</p>
<pre>&lt;a target="_blank" href="%link%" title="%title%" rel="nofollow"&gt;%title%&lt;/a&gt;
</pre>
<p>Note that there are a number of <a title="NoFollow Plugins" href="http://wordpress.org/extend/plugins/search.php?q=nofollow">WordPress plugins</a> that also allow to control nofollow tags across your entire blog.</p>
<hr />]]></description>
			<content:encoded><![CDATA[<p>AutoBlogged post templates give you much flexibility in controlling how it creates posts in WordPress. If you want to configure all external links in your posts to use the <a title="NoFollow" href="http://en.wikipedia.org/wiki/Nofollow">nofollow</a> tag, you can do this through your post template.</p>
<p>By default, AutoBlogged uses the following post template:</p>
<pre>&lt;p&gt;%excerpt%&lt;/p&gt;
%if:video%&lt;p&gt;%video%&lt;/p&gt;%endif:video%
%if:thumbnail%&lt;p&gt;%thumbnail%&lt;/p&gt;%endif:thumbnail%
[Read more here|Read the original here|Read more from the original source|
Continued here|Read more|More here|View original post here|More|See more
here|See original here|Originally posted here|Here is the original post|See
the original post|The rest is here|Read the rest here|See the rest here|Go
here to read the rest|Go here to see the original|See the original post here
|Read the original post|Original post|Read the original|Link|Excerpt from|
View post|Visit link|Follow this link|Continue reading here|See the article
here|Read this article|Read more]:[&lt;br /&gt;| ]
&lt;a target="_blank" href="%link%" title="%title%"&gt;%title%&lt;/a&gt;
</pre>
<p>To give all external links the nofollow tag, simply change the last line of the post template to the following:</p>
<pre>&lt;a target="_blank" href="%link%" title="%title%" rel="nofollow"&gt;%title%&lt;/a&gt;
</pre>
<p>Note that there are a number of <a title="NoFollow Plugins" href="http://wordpress.org/extend/plugins/search.php?q=nofollow">WordPress plugins</a> that also allow to control nofollow tags across your entire blog.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/post-templates/no-follow-links/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Modify the Title of AutoBlogged Posts</title>
		<link>http://autoblogged.com/kb/custom-fields/how-to-modify-title/</link>
		<comments>http://autoblogged.com/kb/custom-fields/how-to-modify-title/#comments</comments>
		<pubDate>Wed, 13 Jan 2010 01:14:53 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Custom Fields]]></category>
		<category><![CDATA[AutoBlogged]]></category>
		<category><![CDATA[autoblogged-templates]]></category>
		<category><![CDATA[Autoblogging]]></category>
		<category><![CDATA[Post Templates]]></category>
		<category><![CDATA[post-title]]></category>
		<category><![CDATA[wordpress-posts]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4802</guid>
		<description><![CDATA[<p>By default, AutoBlogged uses the original post title as the post for each new WordPress post it creates. However, you can customize how the title appears using our Custom Fields feature.</p>
<p>To do this, create a new custom field named <em>title </em> (note that it is lower case). For the Custom Field Value, you can enter anything you want. What makes this feature so powerful is that you can use the full <a href="http://autoblogged.com/support/online-manual/advanced-usage/post-template-reference/">AutoBlogged Post Template syntax</a> here to include variables, use random values, or even use conditional values.</p>
<p>Here are some examples:</p>
<table style="height: 83px;" width="290">
<tbody>
<tr>
<td><span style="text-decoration: underline;"><strong>Custom Field</strong></span></td>
<td><span style="text-decoration: underline;"><strong>Custom Field Value</strong></span></td>
</tr>
<tr>
<td>title</td>
<td>YouTube Video: %title%</td>
</tr>
<tr>
<td>title</td>
<td>[Photo|Picture|Image] of the Day</td>
</tr>
<tr>
<td>title</td>
<td>Latest iPhone App: %title%</td>
</tr>
</tbody>
</table>
<p>If you have come up with any cool title templates, please comment below, we&#8217;d love to see what you have!</p>
<hr />]]></description>
			<content:encoded><![CDATA[<p>By default, AutoBlogged uses the original post title as the post for each new WordPress post it creates. However, you can customize how the title appears using our Custom Fields feature.</p>
<p>To do this, create a new custom field named <em>title </em> (note that it is lower case). For the Custom Field Value, you can enter anything you want. What makes this feature so powerful is that you can use the full <a href="http://autoblogged.com/support/online-manual/advanced-usage/post-template-reference/">AutoBlogged Post Template syntax</a> here to include variables, use random values, or even use conditional values.</p>
<p>Here are some examples:</p>
<table style="height: 83px;" width="290">
<tbody>
<tr>
<td><span style="text-decoration: underline;"><strong>Custom Field</strong></span></td>
<td><span style="text-decoration: underline;"><strong>Custom Field Value</strong></span></td>
</tr>
<tr>
<td>title</td>
<td>YouTube Video: %title%</td>
</tr>
<tr>
<td>title</td>
<td>[Photo|Picture|Image] of the Day</td>
</tr>
<tr>
<td>title</td>
<td>Latest iPhone App: %title%</td>
</tr>
</tbody>
</table>
<p>If you have come up with any cool title templates, please comment below, we&#8217;d love to see what you have!</p>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/custom-fields/how-to-modify-title/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Colorlabs Project Arthemia Theme</title>
		<link>http://autoblogged.com/kb/themes/colorlabs-project-arthemia/</link>
		<comments>http://autoblogged.com/kb/themes/colorlabs-project-arthemia/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 22:46:36 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[arthemia]]></category>
		<category><![CDATA[colorlabs-project]]></category>
		<category><![CDATA[Compatibility]]></category>
		<category><![CDATA[premium-themes]]></category>
		<category><![CDATA[thumbnails]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4773</guid>
		<description><![CDATA[<p><a title="Arthemia Premium WordPress Theme" href="http://autoblogged.com/themes/colorlabsproject/arthemia" target="_blank"><img class="alignright" style="border: 0pt none; margin: 0px 15px;" title="Arthemia Premium Theme" src="http://colorlabsproject.com/wp-content/uploads/marketing/arthemia-premium-200.jpg" border="0" alt="Arthemia Premium Theme" width="200" height="125" /></a>The <a title="Arthemia Premium WordPress Theme" href="../themes/colorlabsproject/arthemia" target="_blank">Arthemia Premium</a> theme is a perfect theme for autoblogs. It has a clean and professional look and is easy to navigate. Customizing the theme is fairly easy and a full-featured options page means you don&#8217;t need to edit too much of the theme itself.<br />
The theme has nice drop-down navigation menus for categories you select and has built-in support for banner ads, Google AdSense, Google Analytics, and FeedBurner.</p>
<p>We have certified the <a title="Arthemia Premium WordPress Theme" href="../themes/colorlabsproject/arthemia" target="_blank">Arthemia Premium </a>theme for use with AutoBlogged and highly recommend it! You can see the Arthemia Premium theme in action at <a title="AutoBlog Example Site" href="http://mspatchwatch.com/" target="_blank">http://mspatchwatch.com</a>.</p>
<p><strong>AutoBlogged Integration</strong></p>
<p>Arthemia Premium will automatically create a thumbnail for each post based on the value of the <em><strong>Image </strong></em>custom field as described in <a title="Arthemia Theme Automatic Thumbnails" href="http://colorlabsproject.com/knowledgebase-tutorials/tutorial-timthumb-thumbnail-generation-with-arthemia-theme/" target="_blank">this article</a>. AutoBlogged will automatically perform all these steps for you and create the <strong><em>Image </em></strong>custom field when it encounters an image in a post. The Arthemia theme will use this field to display post thumbnails if they exist.</p>
<p><strong>Implementation Notes</strong></p>
<ul>
<li>To use the auto thumbnail feature you must check the <strong><em>Save local copies of all images in the feed</em></strong> box under each feed&#8217;s settings.</li>
<li>Under the Arthemia options page you must set the <em><strong>Thumbnail Assignment</strong></em> setting to <em><strong>Post Custom Field</strong></em>.</li>
<li>The auto thumbnail feature currently only supports JPG images.</li>
<li>Because the theme creates its own thumbnails you should remove <em>%if:thumbnail%&lt;p&gt;%thumbnail%&lt;/p&gt;%endif:thumbnail%</em> from the post template.</li>
</ul>
<p><strong>Embedded Videos</strong></p>
<p>The Arthemia theme currently only supports the automatic embedding of YouTube videos. If using an YouTube feed, you can take advantage of Arthemia&#8217;s built-in video support through AutoBlogged by creating a custom field in your feed settings named <em><strong>Video </strong></em>with the value <em><strong>%Video_URL%</strong></em>.  Note that if you do this, you should remove <em>%if:video%&lt;p&gt;%video%&lt;/p&gt;%endif:video%</em> from your post template.</p>
<ul></ul>
<p><img src="http://community.autoblogged.com/attachments/314722" border="0" alt="certified.png" /></p>
<hr />]]></description>
			<content:encoded><![CDATA[<p><a title="Arthemia Premium WordPress Theme" href="http://autoblogged.com/themes/colorlabsproject/arthemia" target="_blank"><img class="alignright" style="border: 0pt none; margin: 0px 15px;" title="Arthemia Premium Theme" src="http://colorlabsproject.com/wp-content/uploads/marketing/arthemia-premium-200.jpg" border="0" alt="Arthemia Premium Theme" width="200" height="125" /></a>The <a title="Arthemia Premium WordPress Theme" href="../themes/colorlabsproject/arthemia" target="_blank">Arthemia Premium</a> theme is a perfect theme for autoblogs. It has a clean and professional look and is easy to navigate. Customizing the theme is fairly easy and a full-featured options page means you don&#8217;t need to edit too much of the theme itself.<br />
The theme has nice drop-down navigation menus for categories you select and has built-in support for banner ads, Google AdSense, Google Analytics, and FeedBurner.</p>
<p>We have certified the <a title="Arthemia Premium WordPress Theme" href="../themes/colorlabsproject/arthemia" target="_blank">Arthemia Premium </a>theme for use with AutoBlogged and highly recommend it! You can see the Arthemia Premium theme in action at <a title="AutoBlog Example Site" href="http://mspatchwatch.com/" target="_blank">http://mspatchwatch.com</a>.</p>
<p><strong>AutoBlogged Integration</strong></p>
<p>Arthemia Premium will automatically create a thumbnail for each post based on the value of the <em><strong>Image </strong></em>custom field as described in <a title="Arthemia Theme Automatic Thumbnails" href="http://colorlabsproject.com/knowledgebase-tutorials/tutorial-timthumb-thumbnail-generation-with-arthemia-theme/" target="_blank">this article</a>. AutoBlogged will automatically perform all these steps for you and create the <strong><em>Image </em></strong>custom field when it encounters an image in a post. The Arthemia theme will use this field to display post thumbnails if they exist.</p>
<p><strong>Implementation Notes</strong></p>
<ul>
<li>To use the auto thumbnail feature you must check the <strong><em>Save local copies of all images in the feed</em></strong> box under each feed&#8217;s settings.</li>
<li>Under the Arthemia options page you must set the <em><strong>Thumbnail Assignment</strong></em> setting to <em><strong>Post Custom Field</strong></em>.</li>
<li>The auto thumbnail feature currently only supports JPG images.</li>
<li>Because the theme creates its own thumbnails you should remove <em>%if:thumbnail%&lt;p&gt;%thumbnail%&lt;/p&gt;%endif:thumbnail%</em> from the post template.</li>
</ul>
<p><strong>Embedded Videos</strong></p>
<p>The Arthemia theme currently only supports the automatic embedding of YouTube videos. If using an YouTube feed, you can take advantage of Arthemia&#8217;s built-in video support through AutoBlogged by creating a custom field in your feed settings named <em><strong>Video </strong></em>with the value <em><strong>%Video_URL%</strong></em>.  Note that if you do this, you should remove <em>%if:video%&lt;p&gt;%video%&lt;/p&gt;%endif:video%</em> from your post template.</p>
<ul></ul>
<p><img src="http://community.autoblogged.com/attachments/314722" border="0" alt="certified.png" /></p>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/themes/colorlabs-project-arthemia/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Error: Warning: implode() [function.implode]: Invalid arguments passed…</title>
		<link>http://autoblogged.com/kb/known-issues/implode-error/</link>
		<comments>http://autoblogged.com/kb/known-issues/implode-error/#comments</comments>
		<pubDate>Tue, 08 Dec 2009 22:58:48 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Known Issues]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[error-message]]></category>
		<category><![CDATA[implode]]></category>
		<category><![CDATA[tags]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4764</guid>
		<description><![CDATA[<p><strong>Issue</strong></p>
<p>When browsing the tag options page, you see an error message like the following:</p>
<pre>Warning: implode() [function.implode]: Invalid arguments passed in
/home/public_html/wp-content/plugins/AutoBlogged/ab-admin.php on line 762</pre>
<p>This is an error introduced in a recent version of AutoBlogged and will be fixed in our next update. This error message <strong>has no impact</strong> on the operations of AutoBlogged and only shows because of an error trying to display tags that you have not set yet. You can safely ignore this message or follow one of the solutions below.</p>
<p><strong>Solution</strong></p>
<p>Although this error message does not affect the operation of AutoBlogged, you can make the error go away with one of the following solutions:</p>
<p>1. Enter a tag where it says <em>Add new tag</em> and click on the Add button.</p>
<p>2. Directly above the error message there is an X in a circle. Click on this X.</p>
<p>After either of these steps save your changes and you will no longer see the error message.</p>
<hr />]]></description>
			<content:encoded><![CDATA[<p><strong>Issue</strong></p>
<p>When browsing the tag options page, you see an error message like the following:</p>
<pre>Warning: implode() [function.implode]: Invalid arguments passed in
/home/public_html/wp-content/plugins/AutoBlogged/ab-admin.php on line 762</pre>
<p>This is an error introduced in a recent version of AutoBlogged and will be fixed in our next update. This error message <strong>has no impact</strong> on the operations of AutoBlogged and only shows because of an error trying to display tags that you have not set yet. You can safely ignore this message or follow one of the solutions below.</p>
<p><strong>Solution</strong></p>
<p>Although this error message does not affect the operation of AutoBlogged, you can make the error go away with one of the following solutions:</p>
<p>1. Enter a tag where it says <em>Add new tag</em> and click on the Add button.</p>
<p>2. Directly above the error message there is an X in a circle. Click on this X.</p>
<p>After either of these steps save your changes and you will no longer see the error message.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/known-issues/implode-error/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Getting Error: Call to Undefined Function ab_logMsg()</title>
		<link>http://autoblogged.com/kb/known-issues/undefined-function-ab_logmsg/</link>
		<comments>http://autoblogged.com/kb/known-issues/undefined-function-ab_logmsg/#comments</comments>
		<pubDate>Mon, 30 Nov 2009 21:19:14 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Known Issues]]></category>
		<category><![CDATA[ab_logmsg]]></category>
		<category><![CDATA[error]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4756</guid>
		<description><![CDATA[<p><strong>Issue</strong></p>
<p>You get the following error:</p>
<pre>Fatal error: Call to undefined function ab_logMsg() in
/home/wp-content/plugins/autoblogged/autoblogged.php
on line 287</pre>
<p><strong>Soution</strong></p>
<p>This is a known bug that has been fixed. Download the latest version of AutoBlogged <a title="ab_logmsg error" href="http://autoblogged.com/purchase/downloads/" target="_self">here</a>.</p>
<hr />]]></description>
			<content:encoded><![CDATA[<p><strong>Issue</strong></p>
<p>You get the following error:</p>
<pre>Fatal error: Call to undefined function ab_logMsg() in
/home/wp-content/plugins/autoblogged/autoblogged.php
on line 287</pre>
<p><strong>Soution</strong></p>
<p>This is a known bug that has been fixed. Download the latest version of AutoBlogged <a title="ab_logmsg error" href="http://autoblogged.com/purchase/downloads/" target="_self">here</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/known-issues/undefined-function-ab_logmsg/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>If I purchase a license can I upgrade to a higher-level license later?</title>
		<link>http://autoblogged.com/kb/sales-and-presales/upgrading/</link>
		<comments>http://autoblogged.com/kb/sales-and-presales/upgrading/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 00:27:07 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Sales and Presales]]></category>
		<category><![CDATA[discount]]></category>
		<category><![CDATA[licenses]]></category>
		<category><![CDATA[upgrade]]></category>
		<category><![CDATA[upgrading]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4751</guid>
		<description><![CDATA[<p>If you purchase any license, you are eligible to upgrade to a higher-level license by just paying the difference in the purchase price. Furthermore, you are also eligible to purchase an additional license at the same level at a discounted price. </p>
<p>To see which offers are available to you, you can look them up here:<br />
<a href="http://autoblogged.com/purchase/downloads/">http://autoblogged.com/purchase/downloads/</a></p>
<hr />]]></description>
			<content:encoded><![CDATA[<p>If you purchase any license, you are eligible to upgrade to a higher-level license by just paying the difference in the purchase price. Furthermore, you are also eligible to purchase an additional license at the same level at a discounted price. </p>
<p>To see which offers are available to you, you can look them up here:<br />
<a href="http://autoblogged.com/purchase/downloads/">http://autoblogged.com/purchase/downloads/</a></p>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/sales-and-presales/upgrading/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>DIYThemes Thesis Theme</title>
		<link>http://autoblogged.com/kb/themes/diythemes-thesis/</link>
		<comments>http://autoblogged.com/kb/themes/diythemes-thesis/#comments</comments>
		<pubDate>Sat, 14 Nov 2009 18:02:46 +0000</pubDate>
		<dc:creator>AutoBlogged Support</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[Compatibility]]></category>
		<category><![CDATA[Custom Fields]]></category>
		<category><![CDATA[diythemes]]></category>
		<category><![CDATA[error]]></category>
		<category><![CDATA[images]]></category>
		<category><![CDATA[premium-theme]]></category>
		<category><![CDATA[thesis]]></category>

		<guid isPermaLink="false">http://autoblogged.com/?p=4734</guid>
		<description><![CDATA[<p><strong>Issue</strong><br />
When using the DIYThemes Thesis theme, you may get an error like the following:</p>
<p>Warning: getimagesize() [function.getimagesize]: failed to open stream: No such file or directory in /home/public_html/wp-content/themes/thesis_151/lib/functions/multimedia_box.php on line 158</p>
<p><strong>Problem</strong><br />
AutoBlogged automatically adds a custom field named <em>image</em> to every post it creates. This field contains the HTML code to display an image, including the IMG tag. The Thesis theme also uses a custom field named <em>image</em> that is uses to display thumbnails in various places. If it sees a custom field on a post named <em>image</em>, it will try to process that as an image path.</p>
<p>The problem is that since the AutoBlogged image field contains HTML, Thesis theme will return an error.</p>
<p><strong>Solution</strong><br />
This issue has been fixed in AutoBlogged v2.6 and later. You can download this release <a title="AutoBlogged Download" href="http://autoblogged.com/purchase/downloads/">here</a>.</p>
<p>Note, however, that this upgrade will not modify existing posts. Unfortunately the only solution to fixing existing posts is to manually edit the custom field for each post so that it only contains the image URL or delete all AutoBlogged posts and start over the feed processing.</p>
<hr />]]></description>
			<content:encoded><![CDATA[<p><strong>Issue</strong><br />
When using the DIYThemes Thesis theme, you may get an error like the following:</p>
<p>Warning: getimagesize() [function.getimagesize]: failed to open stream: No such file or directory in /home/public_html/wp-content/themes/thesis_151/lib/functions/multimedia_box.php on line 158</p>
<p><strong>Problem</strong><br />
AutoBlogged automatically adds a custom field named <em>image</em> to every post it creates. This field contains the HTML code to display an image, including the IMG tag. The Thesis theme also uses a custom field named <em>image</em> that is uses to display thumbnails in various places. If it sees a custom field on a post named <em>image</em>, it will try to process that as an image path.</p>
<p>The problem is that since the AutoBlogged image field contains HTML, Thesis theme will return an error.</p>
<p><strong>Solution</strong><br />
This issue has been fixed in AutoBlogged v2.6 and later. You can download this release <a title="AutoBlogged Download" href="http://autoblogged.com/purchase/downloads/">here</a>.</p>
<p>Note, however, that this upgrade will not modify existing posts. Unfortunately the only solution to fixing existing posts is to manually edit the custom field for each post so that it only contains the image URL or delete all AutoBlogged posts and start over the feed processing.</p>
]]></content:encoded>
			<wfw:commentRss>http://autoblogged.com/kb/themes/diythemes-thesis/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
