<?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>Justin Cox's Mindless Chatter &#187; WordPress</title>
	<atom:link href="http://justincox.com/tag/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://justincox.com</link>
	<description>Home to a part time super hero. Maybe.</description>
	<lastBuildDate>Thu, 18 Mar 2010 01:11:15 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Easy Spoiler Tags in Wordpress with CSS</title>
		<link>http://justincox.com/2008/easy-spoiler-tags-in-wordpress-with-css/</link>
		<comments>http://justincox.com/2008/easy-spoiler-tags-in-wordpress-with-css/#comments</comments>
		<pubDate>Sun, 14 Dec 2008 17:38:51 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[Category X]]></category>
		<category><![CDATA[blogging]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[design]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.justincox.com/?p=892</guid>
		<description><![CDATA[I&#8217;ve been known to spoil a few things in the past on Twitter and here on the blog. Sometimes my excitement prevents me from using better judgement. To try and counter that, at least here on the blog, I&#8217;ve created a simple spoiler tag.
On the site, the spoiler tag will simply black out the text [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been known to spoil a few things in the past on Twitter and here on the blog. Sometimes my excitement prevents me from using better judgement. To try and counter that, at least here on the blog, I&#8217;ve created a simple spoiler tag.</p>
<p>On the site, the spoiler tag will simply black out the text in question. Should you want to read the spoiler, all you have to do is put your mouse on the text and all will be revealed. Check it out:</p>
<p>You&#8217;re reading this text and all is really cool but all of a sudden I decided to drop <span class="spoiler">some really revealing information that you weren&#8217;t expecting</span>. Now, thanks to the <span class="spoiler">spoiler tag</span>, you don&#8217;t have to see if you don&#8217;t want to.</p>
<p>Should you want to implement this on your own site, all you have to do is add the following CSS to your style.css template file:</p>
<blockquote>
<pre>.spoiler { background: #000; color: #000; }
.spoiler:hover { background: inherit; color: inherit; }
</pre>
</blockquote>
<p>Then, the next time you decide to write something that could contain potentially spoilerific details, just wrap the text in a spoiler span:</p>
<blockquote>
<pre>&lt;span class="spoiler">Juicy information goes here.&lt;/span></pre>
</blockquote>
<p>I&#8217;m sure there are other things you could use this for, like making your blog posts look like something released under the Freedom of Information Act, but I&#8217;ll leave that up to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://justincox.com/2008/easy-spoiler-tags-in-wordpress-with-css/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>WordPress URL Shortcuts</title>
		<link>http://justincox.com/2008/wordpress-url-shortcuts/</link>
		<comments>http://justincox.com/2008/wordpress-url-shortcuts/#comments</comments>
		<pubDate>Wed, 27 Aug 2008 17:09:14 +0000</pubDate>
		<dc:creator>Justin</dc:creator>
				<category><![CDATA[WWW]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://www.justincox.com/?p=664</guid>
		<description><![CDATA[I learned something today that might be beneficial to anyone who runs, or visits, websites running the very popular WordPress software package: it creates shortcuts. You see, I was attempting to type the url for my super secret stats page: http://www.justincox.com/mint/ but instead accidently typed in http://www.justincox.com/min. Instead of getting the 404 error, I was [...]]]></description>
			<content:encoded><![CDATA[<p>I learned something today that might be beneficial to anyone who runs, or visits, websites running the very popular WordPress software package: it creates shortcuts. You see, I was attempting to type the url for my super secret stats page: <a title="Have a Mint Statistics" href="http://www.justincox.com/mint/">http://www.justincox.com/mint/</a> but instead accidently typed in <a title="Shortcut to Mint Post" href="http://www.justincox.com/min">http://www.justincox.com/min</a>. Instead of getting the 404 error, I was redirected to <a title="Mint: Worry Free Money Management" href="http://www.justincox.com/2008/mint-worry-free-money-management/">http://www.justincox.com/2008/mint-worry-free-money-management/</a>. Curious, I attempted a few more &#8217;shortcuts.&#8217;</p>
<p>/gen took me to <a href="/2008/generation-kill/">/2008/generation-kill/</a></p>
<p>/aug took me to <a href="/2008/august-blog-o-rama/">/2008/august-blog-o-rama/</a></p>
<p>/fresh took me to <a href="/2003/freshmen/">/2003/freshmen/</a></p>
<p>It looks like this only works with the actual post slugs and not the post title. For example, the Freshmen article originally had a slug of /forums-flashback/. Typing in /fresh returned a 404 error. When I typed in /forums it worked. After changing the slug to freshmen the /fresh shortcut found the article in question.</p>
<p>I&#8217;ve also tested this on <a title="Two Slashes" href="http://twoslashes.com/">Two Slashes</a> and it works there too. We&#8217;re both running WordPress 2.6.1 so I don&#8217;t know if it goes further back, but I have only noticed this since upgrading a few days back.</p>
<p>Find any other cool &#8217;shortcuts&#8217; around here? Try out some word combinations in the URL bar and let me know what you come across in the comments below.</p>
]]></content:encoded>
			<wfw:commentRss>http://justincox.com/2008/wordpress-url-shortcuts/feed/</wfw:commentRss>
		<slash:comments>3</slash:comments>
		</item>
	</channel>
</rss>
