<?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 Easily</title>
	<atom:link href="http://wordpresseasily.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wordpresseasily.com</link>
	<description></description>
	<lastBuildDate>Fri, 12 Feb 2010 03:52:54 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.1</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Signup temporarily disabled</title>
		<link>http://wordpresseasily.com/2010/02/11/signup-temporarily-disabled/</link>
		<comments>http://wordpresseasily.com/2010/02/11/signup-temporarily-disabled/#comments</comments>
		<pubDate>Fri, 12 Feb 2010 03:52:54 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://wordpresseasily.com/?p=155</guid>
		<description><![CDATA[We&#8217;re in the process of changing some things up here so new signup&#8217;s have been temporarily disabled.  But don&#8217;t worry, you can still reach us through the contact form if you have a question. :)
]]></description>
			<content:encoded><![CDATA[<p>We&#8217;re in the process of changing some things up here so new signup&#8217;s have been temporarily disabled.  But don&#8217;t worry, you can still reach us through the contact form if you have a question. :)</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresseasily.com/2010/02/11/signup-temporarily-disabled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Custom Fields in WordPress</title>
		<link>http://wordpresseasily.com/2009/04/11/custom-fields-in-wordpress/</link>
		<comments>http://wordpresseasily.com/2009/04/11/custom-fields-in-wordpress/#comments</comments>
		<pubDate>Sat, 11 Apr 2009 23:40:57 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[News]]></category>

		<guid isPermaLink="false">http://wordpresseasily.com/?p=127</guid>
		<description><![CDATA[While working on a site recently, a common problem was run into using WordPress as a full fledged CMS.  The issue was needing to have multiple content areas within the same Page.  For a developer (front end or back end) this typically isn&#8217;t an issue, even inside of WordPress.  Since the content [...]]]></description>
			<content:encoded><![CDATA[<p>While working on a site recently, a common problem was run into using WordPress as a full fledged CMS.  The issue was needing to have multiple content areas within the same Page.  For a developer (front end or back end) this typically isn&#8217;t an issue, even inside of WordPress.  Since the content area allows you to insert custom HTML a developer can just flip to HTML view and position things on the screen how they see fit.  However, that&#8217;s not always a viable option when handing over content management to your client.  The client may not have the knowledge nor the desire to learn HTML on their own.  This can leave the theme creator in a difficult position.  Luckily WordPress provides Custom Fields as one way to help get around this predicament.</p>
<p>Custom Fields in WordPress can be used for many things:</p>
<ul>
<li> Assigning images to Posts (featured image or thumbnail)</li>
<li>Serving as a data source for content to be loaded via Ajax</li>
<li>Providing multiple content areas for a Page (custom sidebar for instance)</li>
</ul>
<p>One &#8220;gotcha&#8221; of using Custom Fields to solve this issue is that the size of the input area is limited.  There are possible ways around this limitation, but they&#8217;re outside the scope of this Post so we&#8217;ll save that for another time.  Putting that all aside though, they can definitely help get you to where you need to be.</p>
<p>Custom Fields have two components, &#8220;Name&#8221; and &#8220;Value.&#8221;  If you&#8217;re of the developer mindset, think of it as a simple key-value pair.  You can have multiple identical keys even on the same Page/Post.  Once you have used a key once it then becomes available from the select box on future Posts/Pages, making it easier to reuse custom fields for similar operations on other pages.  You can use <a title="get_post_meta() on WordPress Codex" href="http://codex.wordpress.org/Function_Reference/get_post_meta" target="_blank"><em>get_post_meta()</em></a> anytime the WordPress core has been loaded for the Page view and you have access to a Post or Page ID.</p>
<p>Let&#8217;s take the third example, providing multiple content areas for a Page, as an example in using Custom Fields in your theme.  We&#8217;ll be using <em>get_post_meta()</em>.  Here are some basic steps to move towards putting this all together:</p>
<ul>
<li>Edit a Page you would like to add a unique sidebar to</li>
<li>Add a custom field name of &#8220;sidebar&#8221;</li>
<li>Add any content you would like to the value field</li>
<li>Save your Page</li>
<li>Create a Page template file inside your theme directory</li>
<li>At the top of the template file add this PHP code:</li>
</ul>
<p><code>$sidebar_content = get_post_meta($post-&gt;ID, 'sidebar', false);</code></p>
<p>Some explanation:</p>
<ul>
<li> $post-&gt;ID feeds the primary key of the Post or Page that is being displayed by your theme</li>
<li>&#8217;sidebar&#8217; is the &#8220;Name&#8221; or key for the custom field you added to your Page in the WordPress Admin</li>
<li>false tells <em>get_post_meta()</em> to return an array of key-value pairs for the requested key.  If set to true, it would return a single result as a string.</li>
</ul>
<p>From here, adding the extra content to your Page template is fairly simple.  Perhaps you have a sidebar</p>
<div>container you would like to place it into.  You could use this PHP code to do that:</div>
<div></div>
<div>
<p><code> foreach ($sidebar_content as $content) {<br />
echo '&lt;p&gt;' . $content . '&lt;/p&gt;';<br />
}<br />
</code></p>
<p>The above example would loop through each Custom Field you had added with the name &#8217;sidebar&#8217; and would display its content wrapped in a paragraph tag.</p>
<p>Using this overall approach you can now add custom content areas to specific Pages or expand upon the idea to perform other customizations such as easily formatting a thumbnail for a Post/Page.  By using a custom field for the thumbnail, you can then format the thumbnail differently based on the context it is being displayed in, as opposed to just inserting it into the copy area of the Post/Page.  For instance, if you wanted to wrap the copy around the image when displaying it as a full Post or Page you could do so, but if you wanted to display recent Posts on your homepage with the copy blocked to the right of the image, that now becomes easy as well (it&#8217;s just a matter of html/css markup at that point).</p></div>
]]></content:encoded>
			<wfw:commentRss>http://wordpresseasily.com/2009/04/11/custom-fields-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Service Improvements</title>
		<link>http://wordpresseasily.com/2009/03/29/service-improvements/</link>
		<comments>http://wordpresseasily.com/2009/03/29/service-improvements/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 16:05:14 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[efficiency]]></category>
		<category><![CDATA[service]]></category>

		<guid isPermaLink="false">http://wordpresseasily.com/?p=107</guid>
		<description><![CDATA[Not sure if you all noticed, but we&#8217;d noticed that the WordPress Administration panels had started to slow down a little bit.  It wasn&#8217;t anything major, but was still enough for us to want to improve upon it.  I won&#8217;t bore you with the technical details of what was going on, but things should be [...]]]></description>
			<content:encoded><![CDATA[<p>Not sure if you all noticed, but we&#8217;d noticed that the WordPress Administration panels had started to slow down a little bit.  It wasn&#8217;t anything major, but was still enough for us to want to improve upon it.  I won&#8217;t bore you with the technical details of what was going on, but things should be snappy once again.  We&#8217;ll continue to monitor the system and make further enhancements as needed to keep things running smooth.  If you have any questions, don&#8217;t be afraid to <a title="Contact Us" href="/contact/">contact us</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresseasily.com/2009/03/29/service-improvements/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Featured Site: Fresh Ink Blog</title>
		<link>http://wordpresseasily.com/2009/03/29/featured-site-fresh-ink-blog/</link>
		<comments>http://wordpresseasily.com/2009/03/29/featured-site-fresh-ink-blog/#comments</comments>
		<pubDate>Sun, 29 Mar 2009 04:02:45 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[Featured Sites]]></category>
		<category><![CDATA[featured]]></category>

		<guid isPermaLink="false">http://wordpresseasily.com/?p=99</guid>
		<description><![CDATA[While the end result is about ink that moves you, the path to getting there has changed. PR strategists know how to create campaigns utilizing traditional media and analyst relations, but the really good ones can represent your brand to media AND customers via social media channels as well. INK PR is putting the “public” back in public relations.]]></description>
			<content:encoded><![CDATA[<p><img class="alignleft size-full wp-image-100" title="fresh INK" src="http://wordpresseasily.com/wordpress/wp-content/uploads/2009/03/feature_freshink.jpg" alt="fresh INK" width="128" height="118" />The latest featured site is fresh INK.  They have recently launched their blog, hosted by WordPress Easily.  From their site:</p>
<blockquote><p>&#8220;While the end result is about ink that moves you, the path to getting there has changed. PR strategists know how to create campaigns utilizing traditional media and analyst relations, but the really good ones can represent your brand to media AND customers via social media channels as well. INK PR is putting the “public” back in public relations.&#8221;</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://wordpresseasily.com/2009/03/29/featured-site-fresh-ink-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Backups</title>
		<link>http://wordpresseasily.com/2009/03/15/backups/</link>
		<comments>http://wordpresseasily.com/2009/03/15/backups/#comments</comments>
		<pubDate>Sun, 15 Mar 2009 21:12:24 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[WordPress Tips]]></category>
		<category><![CDATA[backups]]></category>
		<category><![CDATA[data]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[procedure]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpresseasily.com/?p=90</guid>
		<description><![CDATA[Backing up your site is something that is very important to do.  You never know when you might make a change that you need to revert, or you install a plugin that goes haywire harming your site.  A reliable backup routine that is put into practice early and often is always a good [...]]]></description>
			<content:encoded><![CDATA[<p>Backing up your site is something that is very important to do.  You never know when you might make a change that you need to revert, or you install a plugin that goes haywire harming your site.  A reliable backup routine that is put into practice early and often is always a good idea.  I&#8217;d like to cover what we do to back up your data along with what you can do to expand on that.</p>
<p>For starters, we do back up the servers.  It&#8217;s important to note though that we are backing up the <strong>entire</strong> server.  So if something goes wrong with your blog specifically, we can&#8217;t roll back the whole server for your site.  That would adversely impact our other users that are on the same server as you.  Our backup routine is in place to protect against a catastrophic disk failure or something along those lines.  We keep a daily backup and a weekly backup.  We also periodically take snapshot backups when configuration changes are being made to the server.</p>
<p>So given that we have the server itself taken care of, that leaves the question, what can you do for your specific site?  Well, there are many tools out there to help with this.  The first, and easiest is using <a title="WordPress XML Export" href="http://codex.wordpress.org/Manage_Export_SubPanel" target="_blank">WordPress&#8217;s built in XML export</a> of data.  This will get you all of your posts, pages, comments, custom fields, categories, and tags.  If you ever have to restore your site from it, it&#8217;s as easy as using the <a title="WordPress XML Import" href="http://codex.wordpress.org/Tools_Import_SubPanel" target="_blank">built in XML import</a>.  Unfortunately it does potentially leave out some data.  Some plugins store their data in their own database tables, which won&#8217;t be included in the XML Export.  To get that data backed up, you may want to consider using something like the <a title="WP-DB-Backup" href="http://wordpress.org/extend/plugins/wp-db-backup/" target="_blank">WP-DB-Backup plugin</a>.  It can create a SQL Dump of your entire WordPress database, including table structures and data.  If you ever need to restore from that on WordPress Easily you&#8217;ll need to contact us, but we can do it in a jiffy.  A final option, and probably the most advanced, is you can use <a title="WP-phpMyAdmin" href="http://wordpress.designpraxis.at/plugins/wp-phpmyadmin/" target="_blank">WP-phpMyAdmin</a>.  This gives you a copy of phpMyAdmin within your WordPress administration panel.  You can export your database from this (which will create a SQL Dump file just like WP-DB-Backup), then if you ever need to restore, you can use WP-phpMyAdmin to import your database.  I wouldn&#8217;t recommend WP-phpMyAdmin unless you&#8217;re fairly comfortable working with SQL Databases.  But feel free to use WP-DB-Backup and we&#8217;ll be happy to assist you with restoring should the need ever arise.</p>
<p>All of that takes care of your database and most of your content, but what about your themes, documents, plugins, etc?  You can use an FTP program to download your site to your local computer.  You probably don&#8217;t even need to do the entire site.  If you download your /wp-content/ directory that should take care of anything you need since that is where your themes and plugins are stored, as well as any files you upload from within the WordPress administration area.</p>
<p>As I said, it&#8217;s recommended that you get a backup plan in place early and that you practice it often.  You never know when you&#8217;ll need that backup.  I am hoping to announce more robust backups of individual sites in the near future.  But until then, know that we have the catatstophy type events covered, and you should always be practicing personal backups as well (even when we do launch the more robust backups of sites).</p>
<p>Until next time, have fun using WordPress everyone :)</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresseasily.com/2009/03/15/backups/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPressEasily.com Launches</title>
		<link>http://wordpresseasily.com/2009/02/28/wordpresseasilycom-launches/</link>
		<comments>http://wordpresseasily.com/2009/02/28/wordpresseasilycom-launches/#comments</comments>
		<pubDate>Sat, 28 Feb 2009 09:31:06 +0000</pubDate>
		<dc:creator>Matt</dc:creator>
				<category><![CDATA[News]]></category>
		<category><![CDATA[plugins]]></category>
		<category><![CDATA[themes]]></category>
		<category><![CDATA[wordpress]]></category>

		<guid isPermaLink="false">http://wordpresseasily.com/?p=36</guid>
		<description><![CDATA[I am pleased to announce the launch of WordPressEasily.com.  Many of my friends, and others around the world have discovered just how powerful WordPress can be both as a blogging platform and as a Content Management System for a website.  The number of users working with WordPress is growing exponentially.  Because of [...]]]></description>
			<content:encoded><![CDATA[<p>I am pleased to announce the launch of WordPressEasily.com.  Many of my friends, and others around the world have discovered just how powerful WordPress can be both as a blogging platform and as a Content Management System for a website.  The number of users working with WordPress is growing exponentially.  Because of this, I wanted to allow users an avenue to work with WordPress and not be hindered by multi-user environments or feel they can’t move to single-install’s of WordPress because they might not know how to install it, or might not know what to do if something were to go wrong.</p>
<p>All of that is where we come in.  Worried about getting WordPress installed?  Not a problem, we’ve been doing it for years and can have a WordPress site up and running in almost no time at all these days.  Worried about something going wrong?  Well, WordPress is pretty self-sustaining, but if something were to go wrong, all you have to do is contact us and myself or someone else will quickly come to your aid.</p>
<p>There are other benefits to hosting your WordPress blog with us as well.  Many WordPress hosting sites set you up with an account on what is called WordPress MU.  This system is great, but it does have a few disadvantages.  The two primary disadvantages would be that you can’t install your own themes, nor your own plugins.  Because of how WordPress MU works (and security concerns), you have to use what the admin of the site supplies you with.  No need to worry about that here.  We’re actually setting you up with an install of WordPress that is just for you.  You can upload themes you find from theme authors, plugins you find from plugin authors, etc.  It’s all yours to fully customize.</p>
<p>Right about now you might find yourself asking, “So what’s the catch?”  Well, I wouldn’t really call any of it a “catch,” but there is some stuff that you should be aware of.  When we setup your account, you are indeed getting your very own install of WordPress,.  However one way we offer this to you at such a cost savings is by not acting as an Email host, nor a conventional web host.  Email hosting can be time intensive on server administrators.  That is cost that gets passed onto you in your subscription fee.  By passing on that, we can offer you a better WordPress experience for a lower cost.  But don’t worry, you can still have email on your custom domain, we’d just recommend you use something like Google Apps for your Domain.  Let Google worry about keeping your email flowing.  They’re probably better at it then we are anyway ;)</p>
<p>So by offering a very focused service in WordPress hosting, we hope to be able to give you outstanding customer service and a great overall experience with WordPress itself.  So what are you waiting for? <a title="sign up" href="/purchase/"> Let’s get you signed up</a>!</p>
]]></content:encoded>
			<wfw:commentRss>http://wordpresseasily.com/2009/02/28/wordpresseasilycom-launches/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
