<?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>We Are Pixel8</title> <atom:link href="http://www.wearepixel8.com/feed/" rel="self" type="application/rss+xml" /><link>http://www.wearepixel8.com</link> <description>A San Antonio, TX Website Design, Marketing &#38; Content Strategy Studio</description> <lastBuildDate>Tue, 24 Jan 2012 18:46:11 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.2.1</generator> <item><title>Use a Conditional Statement to show WordPress Pagination</title><link>http://www.wearepixel8.com/2821/use-a-conditional-statement-to-show-wordpress-pagination/</link> <comments>http://www.wearepixel8.com/2821/use-a-conditional-statement-to-show-wordpress-pagination/#comments</comments> <pubDate>Wed, 18 Jan 2012 18:01:42 +0000</pubDate> <dc:creator>Erik Ford</dc:creator> <category><![CDATA[Tips & Tutorials]]></category> <category><![CDATA[code snippets]]></category> <category><![CDATA[php]]></category> <category><![CDATA[wordpress theme development]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2821</guid> <description><![CDATA[Today I will show you how to quickly &#038; easily conditionally add WordPress pagination to your loop.]]></description> <content:encoded><![CDATA[<p>If you have ever developed a WordPress theme, you have inevitably come across having to add some sort of pagination to the WordPress loop. Whether in your “index.php”, “archives.php” or “search.php”, you end up adding some code that looks like the following:</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
&lt;div class=&quot;pagination&quot;&gt;
	&lt;p class=&quot;alignleft&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> next_posts_link<span style="color: #009900;">&#40;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'&amp;laquo; Older Posts'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'wap8'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/p&gt;
	&lt;p class=&quot;alignright&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> previous_posts_link<span style="color: #009900;">&#40;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Newer Posts &amp;raquo;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'wap8'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/p&gt;
&lt;/div&gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">else</span> <span style="color: #339933;">:</span> <span style="color: #666666; font-style: italic;">// no posts found ?&gt;</span></pre></div></div><p>So what&#8217;s wrong with this code? Technically, nothing at all. You are simply hooking into the <code>next_posts_link()</code> and <code>previous_posts_link()</code> to show the “Older” and “Newer” post links. But, when you check out your source code, in the browser, you will notice that there is an empty <code>div</code> tag at the end of your posts. And, if you are anything like me, you <strong>hate</strong> empty div tags!</p><p>Well, fear not. There is a simple way to avoid those pesky empty <code>divs</code> from destroying your otherwise beautiful markup with a simple function and conditional statement.</p><h2>Step 1: The function</h2><p>I like to keep my development workflow and simplistic as possible. So, instead of writing extra lines of code every time I need to check if pagination is needed, I created a simple function to do the job for me. Open up your “functions.php” file and add the following. I recommend placing this at the end of the file, right before the closing &lt;?php ?&gt; tag.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #666666; font-style: italic;">/*-----------------------------------------------------------------------------------*/</span>
<span style="color: #666666; font-style: italic;">/* Pagination test
/*-----------------------------------------------------------------------------------*/</span>
&nbsp;
<span style="color: #000000; font-weight: bold;">function</span> wap8_show_posts_nav<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_query</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">return</span> <span style="color: #009900;">&#40;</span> <span style="color: #000088;">$wp_query</span> <span style="color: #339933;">-&gt;</span> <span style="color: #004000;">max_num_pages</span> <span style="color: #339933;">&gt;</span> <span style="color: #cc66cc;">1</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span>
<span style="color: #339933;">&lt;/</span>code<span style="color: #339933;">&gt;</span></pre></div></div><p>In a nutshell, all we are doing here is checking if there is more than one page to display with this loop. Nothing fancy or complicated here. Same the file and let&#8217;s move on.</p><h2>Step 2: Add the condition to the loop</h2><p>Remember the block of code I showed you at the beginning of this post. Well, we need to modify this to work with our function. Change that block of code to the following:</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endwhile</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span> wap8_show_posts_nav<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #339933;">:</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>
&nbsp;
	&lt;div class=&quot;pagination clear&quot;&gt;
		&lt;p class=&quot;alignleft&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> next_posts_link<span style="color: #009900;">&#40;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'&amp;laquo; Older Posts'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'wap8'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/p&gt;
		&lt;p class=&quot;alignright&quot;&gt;<span style="color: #000000; font-weight: bold;">&lt;?php</span> previous_posts_link<span style="color: #009900;">&#40;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Newer Posts &amp;raquo;'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'wap8'</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&lt;/p&gt;
	&lt;/div&gt;
&nbsp;
<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">endif</span><span style="color: #339933;">;</span> <span style="color: #b1b100;">else</span> <span style="color: #339933;">:</span> <span style="color: #666666; font-style: italic;">// no posts found ?&gt;</span></pre></div></div><p>As you can see, after the <code>endwhile</code>, we add a conditional check using our function. If there is more than one page, show the <code>div</code>, if not, move on and do nothing.</p><p>That&#8217;s it. Happy WordPress developing!</p> ]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2821/use-a-conditional-statement-to-show-wordpress-pagination/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Dr. Martin Luther King, Jr.</title><link>http://www.wearepixel8.com/2817/dr-martin-luther-king-jr/</link> <comments>http://www.wearepixel8.com/2817/dr-martin-luther-king-jr/#comments</comments> <pubDate>Mon, 16 Jan 2012 15:46:39 +0000</pubDate> <dc:creator>Erik Ford</dc:creator> <category><![CDATA[Quotes]]></category> <category><![CDATA[inspiration]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2817</guid> <description><![CDATA[In celebration of Dr. Martin Luther King's birthday, I take a moment to briefly reflect on the profound effect he had on my life.]]></description> <content:encoded><![CDATA[<p>Yesterday would have been Dr. Martin Luther King&#8217;s 83rd birthday and I would be remiss if I didn&#8217;t take a moment to reflect on how this man&#8217;s life impacted my own. Without his courage and immense self-sacrifice, I am confident that I would not have attended the schools I did, lived in the neighborhoods I did, dated whomever my heart led me to, nor opened my own business as an African-American male. And when you stop to really think about that statement, I would not have been allowed to be Erik Ford, but a mere shell of a person who lived under the confines of another person&#8217;s ideology.</p><p>I know that it is 2012 and we have our first African-American president in the White House. We can all eat at the same counter, drink from the same water fountain and choose our own seats on the bus. But, let&#8217;s not allow these progresses to cloud our vision or assume that we have arrived to the land that Dr. King dreamed of. Sincere ignorance is more prevalent than one would like to believe.</p><p>I truly believe this all starts on the individual level. Let&#8217;s make sure that we are learning from our own mistakes. Remember that our lives do not dictate the lives of the stranger standing next to you. Embrace the fact that this planet is filled with more diversity than the human brain can truly comprehend. Once we have closed our minds to the vast array of possibilities of the human condition, we have planted our own seeds of stupidity.</p> ]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2817/dr-martin-luther-king-jr/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>What are You Doing New Years Eve?</title><link>http://www.wearepixel8.com/2810/what-are-you-doing-new-years-eve/</link> <comments>http://www.wearepixel8.com/2810/what-are-you-doing-new-years-eve/#comments</comments> <pubDate>Fri, 30 Dec 2011 00:35:57 +0000</pubDate> <dc:creator>Erik Ford</dc:creator> <category><![CDATA[Videos]]></category> <category><![CDATA[holidays]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2810</guid> <description><![CDATA[Sit back and watch Zooey Deschanel and Joseph Gordon-Levitt sing this little ditty and tell me it's not the cutest.]]></description> <content:encoded><![CDATA[<p>OK. This is just a cute video that has absolutely nothing to do with anything at all. As I am winding down 2011, I am inevitably thinking of 2012 and where I would like to see We Are Pixel8 in another 365 days.</p><p>Until I can get those thoughts together, I will wallow in the gooey cuteness of this video.</p><p><iframe
width="510" height="383" src="http://www.youtube.com/embed/aSq1cez_flQ?fs=1&#038;feature=oembed" frameborder="0" allowfullscreen></iframe></p> ]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2810/what-are-you-doing-new-years-eve/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Hit the Pause Button</title><link>http://www.wearepixel8.com/2803/hit-the-pause-button/</link> <comments>http://www.wearepixel8.com/2803/hit-the-pause-button/#comments</comments> <pubDate>Thu, 22 Dec 2011 23:05:48 +0000</pubDate> <dc:creator>Jeanette Fernandez</dc:creator> <category><![CDATA[Thoughts]]></category> <category><![CDATA[holidays]]></category> <category><![CDATA[introspection]]></category> <category><![CDATA[vacation]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2803</guid> <description><![CDATA[If you run your own company, it may be hard for you to take a step back this holiday season. Want some advice? Read on, my holiday worker bees, read on.]]></description> <content:encoded><![CDATA[<p>For those lucky folks who own their own business (by “lucky” I mean “crazy”), this time of year can bring with it the added stress of trying to, well, de-stress. It’s the holiday season, after all. A time for merriment, loved ones, hearty meals, laughter, sharing, making new memories, cozying up by the fire, watching football and/or basketball and all those other wonderful things that make you feel warm and giggly inside.</p><p>So, why aren’t you doing it? I ask this because if you’re reading this blog, it means you’re not doing any of the activities mentioned in the previous paragraph. It means that you’re currently connected to a device that is disconnecting you from what you really should be doing. Hello, my target audience.</p><p>You’ve told yourself that this year is going to be different. You’ve given yourself a day off, or two, or three to enjoy the holidays. You promised your family and friends that you’d shut the office door and delight in their presence&#8230;and maybe presents. But, man, are you having a hard time of it! You tell yourself: just one more Tweet, just one more email check, just one more phone call. No one has to know and you won’t do it again. Uh-huh.</p><p>When I was younger, my parents always said to enjoy your time on this Earth. Life really is short and in the end, it’s not memories of your work that you take with you. Of course, it was much easier back then when social media meant visiting your neighbor’s house. Nowadays, we are taught to always be connected, no matter what. You go out to dinner and the couple sitting next to you spends their entire time either talking into or punching away on their phones. So much for being social.</p><blockquote><p>“It’s okay to hit the pause button. It’s okay to give yourself some time to breathe and reboot. It’s okay to enjoy a part of your life that isn’t work.”</p></blockquote><p>I know it’s hard not working, even during the holidays, when there are a dozen things that still need to get done and if you don’t do them, no one will. But, I have news for you holiday workaholics. It’s okay to hit the pause button. It’s okay to give yourself some time to breathe and reboot. It’s okay to enjoy a part of your life that isn’t work. The clocks will still tick, the sun will still rise in the morning and there’ll still be a gazillion college bowl games every holiday season.</p><p>So, what do you say? Just take a deep breathe and put your iPad down, turn your phone off and walk away from your computer. Let’s do it together. I’m going to stop writing right now and watch last night’s “American Horror Story” on the DVR (Is that show beautifully strange, or what?) while I wrap gifts. What are you going to do?</p> ]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2803/hit-the-pause-button/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Santa, Can I Please Have Alexander McQueen: Savage Beauty?</title><link>http://www.wearepixel8.com/2770/santa-can-i-please-have-alexander-mcqueen-savage-beauty/</link> <comments>http://www.wearepixel8.com/2770/santa-can-i-please-have-alexander-mcqueen-savage-beauty/#comments</comments> <pubDate>Wed, 02 Nov 2011 18:53:02 +0000</pubDate> <dc:creator>Jeanette Fernandez</dc:creator> <category><![CDATA[Photos]]></category> <category><![CDATA[Alexander McQueen]]></category> <category><![CDATA[book]]></category> <category><![CDATA[design]]></category> <category><![CDATA[fashion]]></category> <category><![CDATA[photography]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2770</guid> <description><![CDATA[Alexander McQueen: Savage Beauty is a true work of art.]]></description> <content:encoded><![CDATA[<p>I know it&#8217;s a bit early but since we&#8217;re already being bombarded with Holiday television commercials and the local retail stores are fully stocked with lights, decorations and everything else one might need a month in advance, I thought I&#8217;d better start my wish list to Santa.</p><p>First on the list, Alexander McQueen: Savage Beauty written by Andrew Bolton with photography by Solve Sundsbo. The guy was a fashion genius and although his life ended abruptly, he will forever be remembered for his bold, uncompromising and influential designs.</p><p><a
class="grande" href="http://cdn.wearepixel8.com/wp-content/uploads/2011/11/savage-beauty.jpg" rel="fancybox"><img
class="alignnone size-medium wp-image-2776" title="Alexander McQueen's Savage Beauty" src="http://cdn.wearepixel8.com/wp-content/uploads/2011/11/savage-beauty-510x711.jpg" alt="Alexander McQueen's Savage Beauty" width="510" height="711" /></a></p><p>His style turned the fashion world on its head and I love him for that!</p> ]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2770/santa-can-i-please-have-alexander-mcqueen-savage-beauty/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>James Baldwin</title><link>http://www.wearepixel8.com/2764/james-baldwin/</link> <comments>http://www.wearepixel8.com/2764/james-baldwin/#comments</comments> <pubDate>Tue, 01 Nov 2011 15:22:24 +0000</pubDate> <dc:creator>Erik Ford</dc:creator> <category><![CDATA[Quotes]]></category> <category><![CDATA[inspiration]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2764</guid> <description><![CDATA[Never underestimate the importance of enthusiasm in your chosen profession.]]></description> <content:encoded><![CDATA[<p>We all strive to find the perfect occupation for ourselves. You know what I am talking about. That job that makes us whistle to work in the morning and not the one that has us counting down the seconds to our lunch break. The one that taps into our greatest potentials and not the one that drains the life out of us. And, if you are lucky enough to find such a vocation, everything else in your life feels a bit lighter and brighter.</p><p>The truth is, there really isn&#8217;t a “perfect” job, in the strictest sense of the word. There will be days we love our work and days when we would rather drive rusty nails through our temple. I find, that on days when I am less than motivated to be creative, it is my inherit passion and enthusiasm for what I do that “gets me over the hump”. I know that the moment that I lose that drive is when I will have to re-examine what I am doing with my life.</p> ]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2764/james-baldwin/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Use the WordPress Excerpt for Simple SEO Meta Descriptions</title><link>http://www.wearepixel8.com/2756/use-the-wordpress-excerpt-for-simple-seo-meta-descriptions/</link> <comments>http://www.wearepixel8.com/2756/use-the-wordpress-excerpt-for-simple-seo-meta-descriptions/#comments</comments> <pubDate>Tue, 25 Oct 2011 19:13:47 +0000</pubDate> <dc:creator>Erik Ford</dc:creator> <category><![CDATA[Tips & Tutorials]]></category> <category><![CDATA[code snippets]]></category> <category><![CDATA[php]]></category> <category><![CDATA[wordpress theme development]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2756</guid> <description><![CDATA[A quick and easy tutorial for dynamically adding SEO friendly meta descriptions to your WordPress website.]]></description> <content:encoded><![CDATA[<p>The <a
title="All in One SEO Pack Plugin" href="http://wordpress.org/extend/plugins/all-in-one-seo-pack/">All in One SEO Pack</a> is, by far, the most popular WordPress plugin for optimizing your WordPress website for search engines. We have continually recommended its usage to clients who are looking for granular control over every aspect of your website. In fact, we were running this powerful little plugin up until this iteration of our site.</p><p>But, as I was going over every aspect of our site in preparation for the redesign, I realized that we were only using the plugin to generate meta descriptions. This was overkill if we weren&#8217;t going to use the plugin to its fullest potential.</p><p>Luckily, I can achieve the exact same goal, without the use of the plugin, by using the built in WordPress post <a
title="WordPress Codex: Function Reference/the excerpt" href="http://codex.wordpress.org/Function_Reference/the_excerpt">excerpt</a> and the <code>get_the_excerpt()</code> function.</p><p><em>Note: This tutorial is written exclusively for WordPress 3.2.1 and has been tested with that version of the application.</em></p><h2>Step 1: Add excerpts to your WordPress pages</h2><p>WordPress allows you to manually write your own excerpts for posts. When you create a new post, you normally will see the Excerpt meta box appear on the editor screen for that post. This is not the case for pages natively. In order for this to work, we first need to hook into the <code>add_post_type_support()</code> function to add the Excerpt meta box to pages as well.</p><p>Open up your “functions.php” file and add the following:</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'init'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'wap8_page_excerpt'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #000000; font-weight: bold;">function</span> wap8_page_excerpt<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	add_post_type_support<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'page'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'excerpt'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div><p>Once you have saved your file, go ahead and test it by adding a new page. You should now see the Excerpt meta box appear on page editor screen. You are now free to add your excerpts to your pages and posts.</p><h2>Step 2: Dynamically add meta descriptions to your site</h2><p>If you were developing an HTML website, you would simply add your meta descriptions to the <code>&lt;head&gt;</code> section of each page. But, as I am sure you are aware, there is only one template, “header.php”, that generates this code for the entire site. Now that you have added all of your excerpts, you will need a function to dynamically add them to the <code>&lt;head&gt;</code> section of your site.</p><p>In order to accomplish this, we need to conditionally check if WordPress is displaying a post or page and have it return a meta description based on the results. You might think it easiest to add this condition directly to the “header.php” template and you are not totally off base. But, I like to keep this template as tidy as possible, so I am going to add another function to my “functions.php” file. In order for this to work, you need to make sure that your “header.php” template has <code>&lt;?php wp_head(); ?&gt;</code> just before the closing <code>&lt;/head&gt;</code> tag.</p><div
class="wp_syntax"><div
class="code"><pre class="php" style="font-family:monospace;">add_action( 'wp_head', 'wap8_meta_descriptions' );
function wap8_meta_descriptions() {
	if ( is_page() || is_singular( 'post' ) ) {
	?&gt;
&lt;meta name=&quot;description&quot; content=&quot;<span style="color: #000000; font-weight: bold;">&lt;?php</span> <span style="color: #b1b100;">echo</span> <span style="color: #990000;">strip_tags</span><span style="color: #009900;">&#40;</span> get_the_excerpt<span style="color: #009900;">&#40;</span> <span style="color: #000088;">$post</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">ID</span> <span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> <span style="color: #000000; font-weight: bold;">?&gt;</span>&quot; /&gt;
	<span style="color: #000000; font-weight: bold;">&lt;?php</span>	
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></div><p>Save your file and you are done. Take a look at your post or page source code and you should see your newly added meta description. You can extend this function by conditionally checking for <code>is_home()</code> or <code>is_front_page()</code> for the home page.</p> ]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2756/use-the-wordpress-excerpt-for-simple-seo-meta-descriptions/feed/</wfw:commentRss> <slash:comments>1</slash:comments> </item> <item><title>The Telegraph Turns 150!</title><link>http://www.wearepixel8.com/2753/the-telegraph-turns-150/</link> <comments>http://www.wearepixel8.com/2753/the-telegraph-turns-150/#comments</comments> <pubDate>Mon, 24 Oct 2011 19:23:04 +0000</pubDate> <dc:creator>Jeanette Fernandez</dc:creator> <category><![CDATA[Links]]></category> <category><![CDATA[communication]]></category> <category><![CDATA[history]]></category> <category><![CDATA[technology]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2753</guid> <description><![CDATA[Instant messaging had its beginnings 150 years ago. Man, has it come a long way.]]></description> <content:encoded><![CDATA[Instant messaging had its beginnings 150 years ago. Man, has it come a long way.]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2753/the-telegraph-turns-150/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>Five Reasons to Have a Content Calendar</title><link>http://www.wearepixel8.com/2748/five-reasons-to-have-a-content-calendar/</link> <comments>http://www.wearepixel8.com/2748/five-reasons-to-have-a-content-calendar/#comments</comments> <pubDate>Wed, 19 Oct 2011 18:58:09 +0000</pubDate> <dc:creator>Jeanette Fernandez</dc:creator> <category><![CDATA[Business Tips]]></category> <category><![CDATA[Tips & Tutorials]]></category> <category><![CDATA[content calendar]]></category> <category><![CDATA[content strategy]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2748</guid> <description><![CDATA[Coming up with new content doesn't have to be so daunting. Creating an editorial calendar will kick things into gear.]]></description> <content:encoded><![CDATA[<p>For anyone who has their own website, or is in charge of overseeing content for a company website, you know by now that creating new content is constant. It can be overwhelming at times to come up with new topics, especially on the fly. This is why I highly recommend using a content calendar. Content (or editorial) calendars have been a staple at print magazines for years. Here are five good reasons it should be a staple for you:</p><ol><li>Helps Save Time &#8211; Having your topics ready in advance, with set publish dates, goes a long way in keeping you on track. No more fumbling around for ideas at the last minute means more time can be spent on the actual writing.</li><li>Keeps You Connected With Your Users &#8211; Because you have a content calendar, you have fresh content ready to be posted. The more new content to post, the more opportunity you give your users to interact with you.</li><li>A Schedule Saver &#8211; For websites with multiple content writers, a content calendar is a must when it comes to coordinating who is writing what and when. It makes everyone involved responsible for their particular content role.</li><li>Establishes Your Site&#8217;s Tone &#8211; Utilizing a content calendar is a great way to be consistent in your editorial style, whether it be professional, humorous, inspirational,or a myriad of others. Your users will get to know you via your style and come to rely on it.</li><li>Helps Your Traffic &#8211; Users love fresh content. Keeping a constant stream of new content flowing on your website is a surefire way to gain the interest of users, return and new. New content means increased traffic. It&#8217;s as simple as that.</li></ol><div><span
class="Apple-style-span" style="font-size: 14px; line-height: 23px;">Need some tips on coming up with you editorial calendar? Let me know!<br
/> </span></div> ]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2748/five-reasons-to-have-a-content-calendar/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> <item><title>We Are Pixel8 2011 Letterpress Business Cards by Hoban Press</title><link>http://www.wearepixel8.com/2716/we-are-pixel8-2011-letterpress-business-cards-by-hoban-press/</link> <comments>http://www.wearepixel8.com/2716/we-are-pixel8-2011-letterpress-business-cards-by-hoban-press/#comments</comments> <pubDate>Wed, 12 Oct 2011 18:11:33 +0000</pubDate> <dc:creator>Erik Ford</dc:creator> <category><![CDATA[Photos]]></category> <category><![CDATA[branding]]></category> <category><![CDATA[business cards]]></category> <category><![CDATA[corporate collateral]]></category> <category><![CDATA[letterpress]]></category> <category><![CDATA[print design]]></category><guid
isPermaLink="false">http://www.wearepixel8.com/?p=2716</guid> <description><![CDATA[The We Are Pixel8 team are doing cartwheels over our newly printed letterpress business cards by Hoban Press.]]></description> <content:encoded><![CDATA[<p>I was super excited, this morning, to see our friendly neighborhood mail carrier. No, not because I have a strange affinity for the US Postal Service, but because he was delivering our long awaited letterpress business cards printed by <a
title="Hoban Press" href="http://www.hobanpress.com/">Hoban Press</a>.</p><p><a
class="grande" title="We Are Pixel8 2011 Letterpress Business Cards by Hoban Press (front)" href="http://cdn.wearepixel8.com/wp-content/uploads/2011/10/pixel8_front.jpg" rel="fancybox"><img
class="alignnone size-medium wp-image-2717" title="We Are Pixel8 2011 Letterpress Business Cards by Hoban Press (front)" src="http://cdn.wearepixel8.com/wp-content/uploads/2011/10/pixel8_front-510x340.jpg" alt="We Are Pixel8 2011 Letterpress Business Cards by Hoban Press (front)" width="510" height="340" /></a></p><p><a
class="grande" title="We Are Pixel8 2011 Letterpress Business Cards by Hoban Press (back)" href="http://cdn.wearepixel8.com/wp-content/uploads/2011/10/pixel8_back.jpg" rel="fancybox"><img
class="alignnone size-medium wp-image-2719" title="We Are Pixel8 2011 Letterpress Business Cards by Hoban Press (back)" src="http://cdn.wearepixel8.com/wp-content/uploads/2011/10/pixel8_back-510x340.jpg" alt="We Are Pixel8 2011 Letterpress Business Cards by Hoban Press (back)" width="510" height="340" /></a></p><p>The cards are on printed on 220lb paper stock with a blind impression on the back for the logo. The typography, for the front of the card, is set in <a
title="Gotham by H&amp;FJ" href="http://www.wearepixel8.com/2687/content-like-cinderella/">Gotham</a> (I designed the card before I discovered <a
title="Gibson by Canada Type" href="http://new.myfonts.com/fonts/canadatype/gibson/">Gibson</a>, which we are using for the current iteration of our website) and <a
title="Freight Text by Darden Studios" href="http://new.myfonts.com/fonts/canadatype/gibson/">Freight Text</a>.</p><p>Needless to say, we are more than pleased with the outcome. Evan Calkins, the “evil genius” behind Hoban Press, far exceeded our expectations and we owe him an immense amount of gratitude. He patiently guided us throughout the process and we value his immeasurable input which allowed us to have the perfect card for our little studio. If you are in the market for stellar letterpress printing, definitely look no further.</p> ]]></content:encoded> <wfw:commentRss>http://www.wearepixel8.com/2716/we-are-pixel8-2011-letterpress-business-cards-by-hoban-press/feed/</wfw:commentRss> <slash:comments>0</slash:comments> </item> </channel> </rss>
<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic
Page Caching using disk: enhanced
Database Caching 1/55 queries in 0.020 seconds using disk: basic
Object Caching 584/730 objects using disk: basic
Content Delivery Network via Rackspace Cloud Files: cdn.wearepixel8.com

Served from: www.wearepixel8.com @ 2012-02-04 13:37:52 -->
