<?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>Educated Network &#187; WordPress</title>
	<atom:link href="http://www.nyceducated.info/blog/category/internet/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.nyceducated.info/blog</link>
	<description>Ramblings of an educated teenager</description>
	<lastBuildDate>Sat, 24 Apr 2010 17:16:58 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>Implementing The Real Ultimte Front Page</title>
		<link>http://www.nyceducated.info/blog/internet/implementing-the-real-ultimte-front-page/</link>
		<comments>http://www.nyceducated.info/blog/internet/implementing-the-real-ultimte-front-page/#comments</comments>
		<pubDate>Tue, 26 Jun 2007 14:16:24 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[My Sites]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Site Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/internet/implementing-the-real-ultimte-front-page/</guid>
		<description><![CDATA[Previously, I briefly illustrated how using a home.php file can allow you to build a custom layout to your WordPress blog&#8217;s home page. However, I didn&#8217;t really document it well enough for the casual WP user to implement by himself. For the unknowing of my readers, here is a guide to using my (really Rudd-O&#8217;s) [...]]]></description>
			<content:encoded><![CDATA[<p>Previously, I briefly illustrated how using a home.php file can allow you to <a href="http://www.nyceducated.info/blog/internet/the-real-ultimate-static-front-page/" title="Educated &raquo; WordPress Secrets: The Real Ultimate Static Front Page" class="liinternal">build a custom layout to your WordPress blog&#8217;s home page</a>. However, I didn&#8217;t really document it well enough for the casual WP user to implement by himself. For the unknowing of my readers, here is a guide to using my (really Rudd-O&#8217;s) discovery on your site.</p>
<p><em>If you already understand the concepts behind this, <a href="#downloadlink" class="liinternal">skip to the download link</a>.</em></p>
<p>Let&#8217;s take a look at Rudd-O&#8217;s code again. Try to figure out what it&#8217;s doing:</p>
<p><code>1: &lt;?php $homepage = get_settings('siteurl')."/home/";<br />
2: global $wp;<br />
3: $wp_received_argument = false;<br />
4: foreach ($wp-&gt;query_vars as $k=&gt;$v) if ($v) $wp_received_argument = true;<br />
5: if ($wp_received_argument) require(TEMPLATEPATH . "/index.php");<br />
6: else { wp_redirect($homepage);<br />
7: exit(); } ?&gt;</code></p>
<p>Line 1 gets the address of the blog and adds what we would use to access a static page with a slug of &#8216;home&#8217;.</p>
<p>Line 2 brings in the $wp object, which allows us to figure out if there are any parameters in the URL that we need to work with.</p>
<p>Line 3 sets  a simple boolean value of &#8216;false&#8217; to a variable that we will use to determine if we have recieved any parameters.</p>
<p>Line 4 looks at the $wp object and asks it if there are any parameters. If it finds any, then we set $wp_received_argument to &#8216;true&#8217;, and we will use that in the next line.</p>
<p>Line 5 is where the magic happens. If we have parameters, like the page number variable, then we will load the regular index.php template which will show you the normal blog page. Otherwise, we will continue to line 6 and 7.</p>
<p>Line 6 will run if we don&#8217;t have any parameters, which means that we want to show our special home page. We will send a redirect to the browser telling it to go to our static page. Then we quit running this page, since there is nothing more to do anyway.</p>
<p>This is a relatively simple concept. Rudd-O mentioned in his original article that one should add a link to /[wp-root]/page/1 somewhere, like in the header along with the page links for example. What that will do is give WordPress the parameters we need to have the blog listing shown. If you need help adding this link, leave a comment below.</p>
<p>Here&#8217;s the fun part. My hacks to Rudd-O&#8217;s code will replace the redirection of the original code. All HTML and PHP content is placed within home.php. Now that we are including our content in a straight-out PHP file, and not going back to the database to retrieve a page (via the WP Loop), you can even add a real mini-loop to your front page! You can do whatever layout you want with home.php now. (See my home page, which has the mini-loop, a list of categories, and my Flickr photostream, for an example).</p>
<p>Now that we understand what Rudd-O&#8217;s code accomplishes, it&#8217;s up to you to use your imagination. Until recently, my email that came upon request included some basic instructions, which read something like this:</p>
<blockquote><p>Attached is a well-commented version of home.php. Use it to set up your custom layout, but don&#8217;t upload it yet.</p>
<p>In order for this to look and function properly on your site, you will need to adapt it to your theme. You will have to make the portion of home.php before my table-based layout look like the code in index.php from the top of the file to just before the loop, and from just past the loop until the end of the template. Remember to close the else statement with a right curly bracket.</p>
<p>Also, you will need to add the /page/1 (or ?paged=1 if you aren&#8217;t using pretty permalinks) link to the page list in header.php, which should include code to dynamically change the highlighting of the Home and Blog links.</p>
</blockquote>
<p>For those basically familiar with PHP, HTML and some of the simpler CSS concepts, adapting the sample home.php file I am providing should be somewhat easy. If you don&#8217;t have such keen skills, you can review the <a href="http://www.w3schools.com/" class="liexternal">W3Schools&#8217; tutorials</a> on HTML and PHP for a bit of help. (Sorry folks, these days I can&#8217;t handle doing the editing for everyone, although I wish I could.)</p>
<p>If you are convinced that you want a home page with a custom layout for your WordPress blog, I have provided an older version of my layout, plus all of the associated logic basedon Rudd-O&#8217;s code. As noted above, you will have and want to do lots of tweaking with it to make it look good, so grab the download below, and hack away.</p>
<p><a name="downloadlink" style="visibility:hidden;">&nbsp;</a><a href="http://www.nyceducated.info/blog/wp-content/uploads/home-sample.php.txt" class="liinternal">Download sample home.php layout &raquo;</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/implementing-the-real-ultimte-front-page/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>Trackbacks Explained: Networking With Your Blog</title>
		<link>http://www.nyceducated.info/blog/internet/wordpress/trackbacks-explained-networking-with-your-blog/</link>
		<comments>http://www.nyceducated.info/blog/internet/wordpress/trackbacks-explained-networking-with-your-blog/#comments</comments>
		<pubDate>Sun, 25 Feb 2007 03:09:50 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Web 2.0]]></category>
		<category><![CDATA[Web Site Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/internet/wordpress/trackbacks-explained-networking-with-your-blog/</guid>
		<description><![CDATA[Trackbacks are one of those blogging features that some beginners just don&#8217;t get (I was there &#8211; trackbacks have only made sense to me recently). The truth is that they are very simple to understand. Think of trackbacks as comments that are posted by your blogging tool, rather than your own self-determination. To use a [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://codex.wordpress.org/Glossary#Trackback" class="liexternal">Trackbacks</a> are one of those blogging features that some beginners just don&#8217;t get (I was there &#8211; trackbacks have only made sense to me recently). The truth is that they are very simple to understand.</p>
<p><a href="http://www.douglaskarr.com/2006/09/21/blog-jargon/" class="liexternal liimagelink"><img style="border-top-width: 0px; border-left-width: 0px; border-bottom-width: 0px; border-right-width: 0px" height="111" alt="Diagram of a Trackback" src="http://www.nyceducated.info/blog/wp-content/uploads/2007/02/WindowsLiveWriter/ad7d5918e9d7_13379/trackback%5B9%5D.jpg" width="240" border="0"></a></p>
<p>Think of trackbacks as comments that are posted by your blogging tool, rather than your own self-determination. To use a rather crude comparison, they are similar to video responses on <a href="http://www.youtube.com/" class="liexternal">YouTube</a>. Someone makes a video. You think that you can add to that video. you make a video, and it shows up under the existing video.</p>
<p>Same concept with trackbacks. You find a blog post on someone&#8217;s blog that you think is interesting. You write about it on your blog, and leave a trackback in the process. The whole nine yards:</p>
<ol>
<li>You read a blog post, and you like it.</li>
<li>You write a post on <strong>your</strong> blog about it. This could possibly be an <a href="http://photomatt.net/2004/05/19/asides/" class="liexternal">&#8220;Aside&#8221;</a> post.</li>
<li>While posting, you paste the address of the post you are commenting on in a special field on your post editing screen. With WordPress-powered blogs, the trackback address of posts will be the post address, followed by &#8220;trackback/&#8221; (ex. http://www.mysite.com/blog/2007/01/02/my-first-post/trackback/).</li>
<li>Upon the publishing of <strong>your</strong> post from your blog, <strong>their</strong> blog is notified by <strong>your</strong> blog, and a link to <strong>your</strong> new blog post is made on <strong>their</strong> blog.</li>
</li>
</ol>
<p>To make this all fair, you should remember to include a link to their post in your post if your post is not specifically about their post, in which case you may not remember to leave a link. That way, the network between you and them is built, and you two have formed a &#8220;micro-relationship&#8221; of sorts.</p>
<p>You should also leave comments on blogs regularly, but that&#8217;s another topic. Following these tips will help you build your blogging future, giving your blog increased exposure. But remember the main rule for any Web site: <a href="http://www.nyceducated.info/blog/internet/best-traffic-booster-content-is-king/" title="Educated &amp;raquo; Blog Archive &amp;raquo; Best Traffic Booster: Content Is King" class="liinternal">Content is king</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/wordpress/trackbacks-explained-networking-with-your-blog/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>New Attacks: Regstration Spam</title>
		<link>http://www.nyceducated.info/blog/internet/new-attacks-regstration-spam/</link>
		<comments>http://www.nyceducated.info/blog/internet/new-attacks-regstration-spam/#comments</comments>
		<pubDate>Mon, 12 Feb 2007 01:47:35 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[My Sites]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Site Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/internet/new-attacks-regstration-spam/</guid>
		<description><![CDATA[Recently, I&#8217;ve been observing a new form of spam on my blog. It is coming in the form of vague registrations, with email addresses including Russian domains and strange user IDs. For now, it&#8217;s not too bad, so I won&#8217;t take serious action. If things do heat up, I&#8217;ll look into ways to effectively block [...]]]></description>
			<content:encoded><![CDATA[<p>Recently, I&#8217;ve been observing a new form of spam on my blog. It is coming in the form of vague registrations, with email addresses including Russian domains and strange user IDs. For now, it&#8217;s not too bad, so I won&#8217;t take serious action. If things do heat up, I&#8217;ll look into ways to effectively block spammers from clogging up my users table.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/new-attacks-regstration-spam/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress Secrets: The Real Ultimate Static Front Page</title>
		<link>http://www.nyceducated.info/blog/internet/the-real-ultimate-static-front-page/</link>
		<comments>http://www.nyceducated.info/blog/internet/the-real-ultimate-static-front-page/#comments</comments>
		<pubDate>Fri, 19 Jan 2007 20:44:08 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web Development]]></category>
		<category><![CDATA[Web Site Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/internet/the-real-ultimate-static-front-page/</guid>
		<description><![CDATA[The search has ended for a static home page solution. Like the staticity of WordPress's own static pages, but want more control over the layout and funtionality of your home page? The solution lies within a little-known but highly useful template file combined with a bit of creative coding. Add a portal-like layout that includes a recent posts display and other dynamic content.

Note: This is not for the newbie WordPress user. You should be comfortable working with PHP, XHTML and possibly CSS if you plan to work on this yourself. If you would like help, <a href="http://www.nyceducated.info/blog/internet/the-real-ultimate-static-front-page/#comments#respond">leave a comment</a> and we'll discuss it with you.]]></description>
			<content:encoded><![CDATA[<p><strong>Quick Note:</strong> If you are looking for the source, <a href="http://www.nyceducated.info/blog/internet/implementing-the-real-ultimte-front-page/" class="liinternal">find it here</a>.</p>
<p>With WordPress, there have been so many attempts to make the best static front page. Most variations have included plugins that change the default behavior of the home page to display a pre-selected WordPress page. However, the Turbocharged blog <a href="http://turbochargedcms.com/2006/11/building-a-true-home-page-into-your-wordpress-blog/" title="Turbocharged - Creating a static front page on your WordPress blog" class="liexternal">showcases a new technique</a> that uses a theme&#8217;s home.php template, and even allows you to add pure PHP code to it. Rudd-O&#8217;s solution <span id="more-84"></span>is to place this code into the home.php file:</p>
<p><code>&lt;?php $homepage = get_settings('siteurl')."/home/";<br />
global $wp;<br />
$wp_received_argument = false;<br />
foreach ($wp-&gt;query_vars as $k=&gt;$v) if ($v) $wp_received_argument = true;<br />
if ($wp_received_argument) require(TEMPLATEPATH . "/index.php");<br />
else { wp_redirect($homepage);<br />
exit(); } ?&gt;</code></p>
<p>Simple and quick, this will redirect to a static WP page with a slug of &#8216;home&#8217;. However, this technique doesn&#8217;t really provide much flexibility as to what you can do with your homepage, as you are simply limited to the tools provided by WordPress&#8217;s editor and any installed plugins.</p>
<p>What the code you see above does is check for any parameters passed in the URL that tell WordPress what to display in the resulting page. If parameters exist, the normal index.php template will be used. If not, the visitor will be redirected to your static page.</p>
<p>What I have done is extend this code so that instead of redirecting to a WP static page, the user will see the output of code run in the home.php file. I replaced the redirection code with a custom made layout, which includes a slimmed-down WP Loop, the code that displays post listing pages. This is my version (I&#8217;m going to omit the large portions of irrelevant code):</p>
<p><code>&lt;?php get_header();<br />
//$homepage = get_settings('siteurl')."/home/"; - from original code<br />
global $wp; $wp_received_argument = false;<br />
foreach ($wp-&gt;query_vars as $k=&gt;$v) if ($v) $wp_received_argument = true;<br />
if ($wp_received_argument) require(TEMPLATEPATH . "/index.php");<br />
else { //wp_redirect($homepage); - from original code<br />
//exit(); - from original code get_header();<br />
?&gt; &lt;div id="content"&gt;<br />
&lt;?php include_once(TEMPLATEPATH.'/intro.php');?&gt;<br />
&lt;!-- Primary content: Stuff that goes in the primary content column (by default, the left column) --&gt;<br />
&lt;div id="primarycontainer"&gt;<br />
&lt;div id="primarycontent"&gt;<br />
&lt;div id="contentarea"&gt;<br />
&lt;!-- Primary content area start --&gt;<br />
&lt;table summary="Layout for Educated home page" width="100%"&gt;<br />
&lt;tr&gt;<br />
...<br />
&lt;td style="width: 50%; vertical-align: top"&gt;<br />
&lt;h4 style="border-bottom-color: #070000; border-bottom-width: 1px; border-bottom-style: solid"&gt;Latest Updates&lt;/h4&gt;<br />
&lt;ul&gt;<br />
<b>&lt;?php //begin the loop if ( have_posts() ) : while ( have_posts() ) : the_post(); ?&gt;</b><br />
&lt;li&gt;<br />
&lt;a href="&lt;?php the_permalink() ?&gt;" rel="bookmark" title="Permanent Link to &lt;?php the_title(); ?&gt;"&gt;<br />
&lt;?php the_title(); ?&gt;<br />
&lt;/a&gt;&lt;br /&gt;<br />
&lt;span class="date"&gt;<br />
&lt;?php the_time('F jS, Y') ?&gt;<br />
&lt;/span&gt;<br />
&lt;/li&gt;<br />
&lt;?php endwhile; else: ?&gt;<br />
&lt;p&gt;<br />
&lt;?php _e('Sorry, no posts.'); ?&gt;<br />
&lt;/p&gt;<br />
&lt;?php endif; ?&gt;<br />
&lt;/ul&gt;<br />
&lt;/td&gt;<br />
&lt;/tr&gt;<br />
&lt;/table&gt;<br />
&lt;/div&gt;<br />
&lt;!-- primarycontent end --&gt;<br />
&lt;/div&gt;<br />
&lt;!-- primarycontainer end --&gt;<br />
&lt;/div&gt;<br />
&lt;!--content end --&gt;<br />
&lt;?php get_sidebar();<br />
get_footer(); }?&gt;</code></p>
<p><strong>Please do not copy this directly. I omitted various portions of important code that you may need for the code to work on your site. Please <a href="http://www.nyceducated.info/blog/internet/implementing-the-real-ultimte-front-page/" class="liinternal">see the companion article</a> for a sample version you can download and play with and instructions.</strong></p>
<p>What this does is imitate the index.php template: it shows the user the header, sidebar and footer. But what it does differently is it shows my layout instead of posts. Using this you can create a portal-looking home page, similar to that of <a href="http://www.devlounge.net/" title="Devlounge Custom Home Page" class="liexternal">Devlounge</a> and one other site that I don&#8217;t remember off hand.</p>
<p>I&#8217;ve discovered the home.php is incredibly useful. While hand-coding may be slightly difficult, the results are almost always pleasing. One of the static home page plugins I&#8217;ve used before didn&#8217;t make the cut, and not using it was not worth it (sorry <a href="http://www.semiologic.com/software/static-front/" class="liexternal">Semiologic</a>).</p>
<p>One little secret: I got the inspiration for the edit in the shower last night. Amazing what relaxation techniques can bring (either that or I&#8217;m just a good brainstormer).  </p>
<p>I&#8217;d like to publicly thank Turbocharged for <a href="http://turbochargedcms.com/2007/01/creating-a-dynamic-home-page-in-wordpress/" class="liexternal">acknowledging my accomplishment</a> on his blog. But I&#8217;d also like to thank him, since it was his code that gave me the inspiration.</p>
<p>As I once said: I&#8217;m not a coder, but I know how to make ends meet. That includes hacking (not cracking) other people&#8217;s code.</p>
<p>See also:</p>
<ul>
<li><a href="http://www.oeic.net/oeic/2007/05/03/wordpress-as-a-cms/" class="liexternal">OEIC  &raquo; WordPress as a CMS</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/the-real-ultimate-static-front-page/feed/</wfw:commentRss>
		<slash:comments>130</slash:comments>
		</item>
		<item>
		<title>WordPress Music Video: It&#8217;s Called WordPress</title>
		<link>http://www.nyceducated.info/blog/internet/wordpress-music-video-its-called-wordpress/</link>
		<comments>http://www.nyceducated.info/blog/internet/wordpress-music-video-its-called-wordpress/#comments</comments>
		<pubDate>Thu, 18 Jan 2007 00:18:01 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Comedy]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Quickies]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/internet/wordpress-music-video-its-called-wordpress/</guid>
		<description><![CDATA[While including one slightly family-unfriendly line in his lyrics, Devin made up a pretty corny music video themed around WordPress. Talking in a southern accent, he highlights the main advantages of WordPress, and adds a spin of comedy.]]></description>
			<content:encoded><![CDATA[<p>While including one slightly family-unfriendly line in his lyrics, Devin made up a <a href="http://devinreams.com/2007/01/14/its-called-wordpress/" title="Devin Reams.com - It's Called WordPress" class="liexternal">pretty corny music video</a> themed around WordPress. Talking in a southern accent, he highlights the main advantages of WordPress, and adds a spin of comedy.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/wordpress-music-video-its-called-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress: Market Full, Competition Unrivaled</title>
		<link>http://www.nyceducated.info/blog/internet/wordpress-market-full-competition-unrivaled/</link>
		<comments>http://www.nyceducated.info/blog/internet/wordpress-market-full-competition-unrivaled/#comments</comments>
		<pubDate>Mon, 15 Jan 2007 01:36:13 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/internet/wordpress-market-full-competition-unrivaled/</guid>
		<description><![CDATA[We all know that WordPress is pretty much the best (or at least best open-source) blogging platform today. It costs you practically nothing to use it (on WordPress.com, it&#8217;s absolutely free), and all you need to start blogging, not counting the techy stuff, is a few interesting thoughts and a passion for sharing your mind. [...]]]></description>
			<content:encoded><![CDATA[<p>We all know that WordPress is pretty much the best (or at least best open-source) blogging platform today. It costs you practically nothing to use it (on WordPress.com, it&#8217;s absolutely free), and all you need to start blogging, not counting the techy stuff, is a few interesting thoughts and a passion for sharing your mind. However, for those who want to take the path less taken, and write their own blogging tool, it&#8217;s almost impossible to do so, as <a href="http://neosmart.net/blog/archives/316" title="How WordPress Spoils Developers" class="liexternal">Computer Guru points out</a>. I suppose that only the most inventive and creative programmer/designer can rival WordPress.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/wordpress-market-full-competition-unrivaled/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Comment Spam: More Than A Minor Annoyance</title>
		<link>http://www.nyceducated.info/blog/internet/comment-spam-more-than-a-minor-annoyance/</link>
		<comments>http://www.nyceducated.info/blog/internet/comment-spam-more-than-a-minor-annoyance/#comments</comments>
		<pubDate>Sun, 14 Jan 2007 04:49:14 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Annoyances]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[My Sites]]></category>
		<category><![CDATA[My life]]></category>
		<category><![CDATA[Philosophy]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/my-life/comment-spam-more-than-a-minor-annoyance/</guid>
		<description><![CDATA[Although I do have the absolutely wonderful and I-can&#8217;t live-without-it Askimet plugin installed here, I still look through the messages it catches every few days. What&#8217;s worse than having to waste time even looking at them is trying to ignore what&#8217;s in them. Various prescription drugs (I&#8217;m keeping things G-rated over here), and links to what I will leave as explicit videos litter the Askimet Spam page litter my screen every time I look at it. [...]]]></description>
			<content:encoded><![CDATA[<p>Although I do have the absolutely wonderful and I-can&#8217;t live-without-it Askimet plugin installed here, I still look through the messages it catches every few days. What&#8217;s worse than having to waste time even looking at them is trying to ignore what&#8217;s <em>in</em> them. Various prescription drugs (I&#8217;m keeping things G-rated over  here), and links to what I will leave as explicit videos litter the Askimet Spam page litter my screen every time I look at it.</p>
<p>Eventually, someone is going to (or I will) say enough is enough, and just get rid of comments once and for all. We all hate weeding through spam emails (which affect a much greater majority of people than comment spam does), so why should we feel the smame about comments?</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/comment-spam-more-than-a-minor-annoyance/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
		<item>
		<title>Useful Tips for WordPress Theme Design</title>
		<link>http://www.nyceducated.info/blog/internet/useful-tips-for-wordpress-theme-design/</link>
		<comments>http://www.nyceducated.info/blog/internet/useful-tips-for-wordpress-theme-design/#comments</comments>
		<pubDate>Thu, 11 Jan 2007 02:57:45 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Internet]]></category>
		<category><![CDATA[Quickies]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/my-life/useful-tips-for-wordpress-theme-design/</guid>
		<description><![CDATA[cre8d design has written a pretty good list of resources for WordPress theme developement. They include one of my personal favorites, W3Schools.com, which has a lot of useful Web tutorials.]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.cre8d-design.com/blog/2007/01/01/useful-resources-for-creating-a-wordpress-theme/" title="cre8d design's WordPress Theme Resources" class="liexternal">cre8d design</a> has written a pretty good list of resources for WordPress theme developement. They include one of my personal favorites, <a href="http://www.w3schools.com/" title="W3Schools.com - Web tutorials" class="liexternal">W3Schools.com</a>, which has a lot of useful Web tutorials.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/useful-tips-for-wordpress-theme-design/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Easy WordPress Updates with cPanel and SmartFTP</title>
		<link>http://www.nyceducated.info/blog/internet/easy-wordpress-updates-with-cpanel-and-smartftp/</link>
		<comments>http://www.nyceducated.info/blog/internet/easy-wordpress-updates-with-cpanel-and-smartftp/#comments</comments>
		<pubDate>Mon, 08 Jan 2007 03:46:23 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[Web Site Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/internet/easy-wordpress-updates-with-cpanel-and-smartftp/</guid>
		<description><![CDATA[WordPress is terrifically easy to use. From simply posting to installing plugins, WordPress makes it easy to make your blog truly yours. Some people shutter at making updates to it though. Here&#8217;s the extremely easy way to get the whole thing done in just a few minutes, with two of my favorite tools, cPanel&#160;and SmartFTP. [...]]]></description>
			<content:encoded><![CDATA[<p>WordPress is terrifically easy to use. From simply posting to installing plugins, WordPress makes it easy to make your blog truly yours. Some people shutter at making updates to it though. Here&#8217;s the extremely easy way to get the whole thing done in just a few minutes, with two of my favorite tools, <a href="http://www.cpanel.net/" title="cPanel" class="liexternal">cPanel</a>&nbsp;and <a href="http://www.smartftp.com/" title="SmartFTP" class="liexternal">SmartFTP</a>.</p>
<p>Start by following the four essential steps in the <a href="http://codex.wordpress.org/Upgrading_WordPress#Detailed_Instructions" title="WordPress Detailed Install Guide" class="liexternal">official upgrade guide</a>, which involves backing up <em>everything</em> and deactivating all of your plugins. When you are done with that, continue here.</p>
<ol>
<li>Extract the update archive to your disk.  </li>
<li>Upload the files in the <strong>wordpress</strong> folder of the update archive (all of the .php files), but <em>not</em> any folders contained within the root wordpress folder. </li>
<li>Delete the <strong>wp-admin</strong> folder from your site using SmartFTP, the cPanel File Manager, or whatever file management mechanism you use. </li>
<li>In Windows Explorer or the SmartFTP file browser (that&#8217;s where part of the SmartFTP mention comes in, since it redefines convenience), right click on the <strong>wp-admin</strong> folder on your disk, select Send To, and then click <strong>Compressed (zipped) Folder</strong>. This will give you a new .zip file containing the contents of the <strong>wp-admin</strong> folder that you would normally upload yourself. </li>
<li>Upload the <strong>wp-admin.zip</strong> file to your WordPress root directory on your Web server. </li>
<li>In the cPanel File Manager, navigate to the <strong>wp-admin.zip</strong> file, and in the right pane, click <strong>Extract File Contents</strong>. This should extract the directory, saving you hours of time that you would normally spend uploading the update file-by-file. </li>
<li>Close the resulting popup window, and delete the <strong>wp-admin.zip</strong> file on the Web server. </li>
<li>Repeat steps 3 through 7 for the <strong>wp-includes</strong> directory. </li>
<li>Upload the <strong>wp-content</strong> directory on your disk to the site using SmrtFTP, which will overwrite the older versions of the Askimet, DB Backup, and Hello Dolly plugins. It will also give you the update default Kubrick and Classic themes. You don&#8217;t need to zip it up this time because the total size of these files is pretty small.</li>
<li>Re-enable your plugins, and test everything. If you see something scrambled up, clear your browser&#8217;s cache, and refresh that page.</li>
<li>Done!</li>
</ol>
<p>Now if the rest of life were as simple as that, the world would be much more peaceful. But for now, at least WordPress upgrades won&#8217;t give you migraines (in most cases).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/easy-wordpress-updates-with-cpanel-and-smartftp/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Finally Found a New Theme</title>
		<link>http://www.nyceducated.info/blog/internet/found-new-theme/</link>
		<comments>http://www.nyceducated.info/blog/internet/found-new-theme/#comments</comments>
		<pubDate>Thu, 28 Dec 2006 00:28:20 +0000</pubDate>
		<dc:creator>Michael Perlman</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Internet]]></category>
		<category><![CDATA[My Sites]]></category>
		<category><![CDATA[Web Site Tools]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.nyceducated.info/blog/my-life/found-new-theme/</guid>
		<description><![CDATA[Browsing a gallery of 700 something themes was not easy or particularly exciting work, but that&#8217;s what it took to give my blog a facelift after almost a year with one theme. I spent some time browsing the gallery at Themebot.com, and came across a nice theme. Actually, I didn&#8217;t find this one at Themebot, [...]]]></description>
			<content:encoded><![CDATA[<p>Browsing a gallery of 700 something themes was not easy or particularly exciting work, but that&#8217;s what it took to give my blog a facelift after almost a year with one theme. I spent some time browsing the gallery at <a href="http://themebot.com/" title="Visit Themebot" class="liexternal">Themebot.com</a>, and came across a nice theme. Actually, I didn&#8217;t find this one at Themebot, rather I saw it on the author&#8217;s site (link at bottom of page). I&#8217;m just happy that I&#8217;m using something new and beautiful (not saying the Regulus isn&#8217;t beautiful &#8211; it&#8217;s just old).</p>
<p>Enjoy the new look folks.</p>
<p><img height="152" alt="New theme @ Educated" src="http://www.nyceducated.info/blog/wp-content/uploads/2006/12/WindowsLiveWriter/FinallyfoundaNewTheme_141B4/new_blog_theme%5B11%5D.png" width="240" /></p>
]]></content:encoded>
			<wfw:commentRss>http://www.nyceducated.info/blog/internet/found-new-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
