<?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>Wordpress Tips</title>
	<atom:link href="/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>https://talkera.org/wordpress</link>
	<description>Everything wordpress</description>
	<lastBuildDate>Sat, 03 Jan 2015 00:25:02 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=4.1</generator>
	<item>
		<title>Bitcoin Price Ticker Plugin</title>
		<link>https://talkera.org/wordpress/bitcoin-price-ticker-plugin/</link>
		<comments>https://talkera.org/wordpress/bitcoin-price-ticker-plugin/#comments</comments>
		<pubDate>Fri, 02 Jan 2015 23:03:57 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>
		<category><![CDATA[bitcoin]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">https://talkera.org/wordpress/?p=9</guid>
		<description><![CDATA[I created a small plugin that ads the bitcoin market price to your wordpress blog. The price comes directly from BitStamp and if your blog is related to bitcoin, you could consider adding it. The plugin looks slick and simple, which is an alternative to the other plugins.  Download plugin here. This is what it [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>I created a small plugin that ads the bitcoin market price to your wordpress blog. The price comes directly from BitStamp and if your blog is related to bitcoin, you could consider adding it. The plugin looks slick and simple, which is an alternative to the other plugins.  <a href="/wordpress/exchangeticker.zip" target="_blank">Download plugin here. </a>This is what it looks like:<strong><br />
</strong></p>
<div id="attachment_10" style="width: 590px" class="wp-caption alignnone"><a href="/wordpress/wp-content/uploads/2015/01/wordpressplugin.png"><img class="wp-image-10 size-large" src="/wordpress/wp-content/uploads/2015/01/wordpressplugin-1024x491.png" alt="Bitcoin Price Ticker" width="580" height="278" /></a><p class="wp-caption-text">Bitcoin Price Ticker</p></div>
]]></content:encoded>
			<wfw:commentRss>https://talkera.org/wordpress/bitcoin-price-ticker-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to create a wordpress &#8220;Hello World&#8221; Plugin</title>
		<link>https://talkera.org/wordpress/how-to-create-a-wordpress-hello-world-plugin/</link>
		<comments>https://talkera.org/wordpress/how-to-create-a-wordpress-hello-world-plugin/#comments</comments>
		<pubDate>Fri, 02 Jan 2015 21:15:16 +0000</pubDate>
		<dc:creator><![CDATA[admin]]></dc:creator>
				<category><![CDATA[Uncategorized]]></category>

		<guid isPermaLink="false">https://talkera.org/wordpress/?p=5</guid>
		<description><![CDATA[WordPress is web software you can use to create a beautiful website or blog.  There are a few steps to create a WordPress plugin. Step 1: Connect to the web server through SSH or FTP/SFTP.   This should be pretty straight forward. If you want to connect by ssh you can use the command [crayon-54b44645bc6e0898392411/] Step [&#8230;]]]></description>
				<content:encoded><![CDATA[<p>WordPress is web software you can use to create a beautiful website or blog.  There are a few steps to create a WordPress plugin.</p>
<p><strong>Step 1:</strong> Connect to the web server through SSH or FTP/SFTP.   This should be pretty straight forward. If you want to connect by ssh you can use the command</p><pre class="crayon-plain-tag">ssh username@server</pre><p><strong>Step 2: </strong> Enter the directory <strong>/wordpress/wp-content/plugins/</strong> and create a directory called hello.  Enter this direcotry and create a new file hello.php</p>
<p><strong>Step 3:</strong><br />
Add this code to hello.php:</p><pre class="crayon-plain-tag">&lt;?php
/*
Plugin Name: hello
Plugin URI: https://talkera.org/wordpress
Description: Hello plugin.
Version: 1.0.0
Author: Talkera
Author URI: https://talkera.org/wordpress
*/

add_action('wp_footer','hello_wp_footer');  
function hello_wp_footer(){  
      echo '&lt;div&gt;Hello world! '. get_option('blogname') .'&lt;/div&gt;';    
}

?&gt;</pre><p><strong>Step 4:</strong><br />
Open your wordpress administration panel, go to plugins and activate. Now visit your page and look at the bottom of the page. The message &#8216;Hello World&#8217; should appear.</p>
]]></content:encoded>
			<wfw:commentRss>https://talkera.org/wordpress/how-to-create-a-wordpress-hello-world-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
