<?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>Beyond Caffeine &#187; Wordpress</title>
	<atom:link href="http://blog.websitestyle.com/index.php/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.websitestyle.com</link>
	<description>Various Epiphanies of a Technical Mind</description>
	<lastBuildDate>Wed, 03 Nov 2010 22:27:22 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Automatic Post Thumbnails Without Plugins</title>
		<link>http://blog.websitestyle.com/index.php/2009/08/21/automatic-post-thumbnails-without-plugins/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/08/21/automatic-post-thumbnails-without-plugins/#comments</comments>
		<pubDate>Fri, 21 Aug 2009 16:20:08 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[automatic]]></category>
		<category><![CDATA[post]]></category>
		<category><![CDATA[thumbnail]]></category>
		<category><![CDATA[thumbnails]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=648</guid>
		<description><![CDATA[Recently I had to make a WordPress theme for someone who is very uncomfortable with the technical process of downloading pictures and uploading them, so asking this person to resize or crop photos to make thumbnails was out of the question. Regardless, she needs to have a unique picture on each post of her new [...]]]></description>
			<content:encoded><![CDATA[<p>Recently I had to make a WordPress theme for someone who is very uncomfortable with the technical process of downloading pictures and uploading them, so asking this person to resize or crop photos to make thumbnails was out of the question. Regardless, she needs to have a unique picture on each post of her new site &#8211; so my challenge was how to make that as easy as possible.</p>
<p>Now certainly, I could have used one of the php bits to create thumbnails on the fly like TimThumb &#8211; but I really dislike using plugins for things I can do without them. She also gets totally confused using custom fields, so that&#8217;s out as well.</p>
<p>What I needed to do:<br />
1. Determine a standard size for thumbnails and post images that would work well for her theme.<br />
2. Create a post thumbnail using the first image attached to a post.<br />
3. Display the post thumbnails on the blog main page listing of recent posts.<br />
4. Create a standard image that would be displayed if she forgot to add any images to a post.</p>
<p>Since I&#8217;m a big fan of reusing code, I decided I wanted to use the built in sizing options of WordPress to get this done. I remembered recently reading an article with a chunk of code, so I found it again and reused that. <a href="http://webdeveloperplus.com/wordpress/how-to-use-thumbnails-generated-by-wordpress-in-your-theme/">The code process can be found on Web Developer Plus</a>.</p>
<h3>Setting The Image Sizes</h3>
<p>Go to your WordPress backend and then Settings -> Media and configure the sizes that work well for your theme.</p>
<p>The thumbnail size is the most important. I set this one to 150px by 150px and selected the option to crop the thumbnails to that size. The reason I selected the crop is in the likely case the photo she&#8217;s using isn&#8217;t a perfect square, the image won&#8217;t look out of proportion when it&#8217;s sized down to 150&#215;150.</p>
<h3>Creating a Thumbnail From The First Image</h3>
<p>This is where we get the <a href="http://webdeveloperplus.com/wordpress/how-to-use-thumbnails-generated-by-wordpress-in-your-theme/">code bit from Web Developer Plus</a> and with a couple of minor changes end up with this:</p>
<p><code>&lt;?php<br />
// Get images attached to the post<br />
$img = null;<br />
$args = array(<br />
'post_type' =&gt; 'attachment',<br />
'post_mime_type' =&gt; 'image',<br />
'numberposts' =&gt; -1,<br />
'order' =&gt; 'ASC',<br />
'post_status' =&gt; null,<br />
'post_parent' =&gt; $post-&gt;ID<br />
);<br />
$attachments = get_posts($args);<br />
if ($attachments) {<br />
foreach ($attachments as $attachment) {<br />
$img = wp_get_attachment_thumb_url( $attachment-&gt;ID );<br />
break;<br />
} ?&gt;<br />
&lt;!-- Display the image in here --&gt;<br />
&lt;?php }<br />
?&gt;</code></p>
<p>The code, at this point, doesn&#8217;t do much but it will in the next steps. I do want to stop and explain the terminology a bit. You&#8217;ll notice the use of the word &#8216;attachment&#8217; in the code above. That&#8217;s how WordPress identifies the image associated with the post. Think of sending an email and attaching photos to it. The code finds the images attached to the post and selects the first one. It puts the information about that image in the $img variable we&#8217;ll use later.</p>
<p>It is important to note that this only works for attached photos because that is what WordPress it set up to handle. That means that if you host your photos elsewhere and just link to them &#8211; it&#8217;s not going to work. You have to actually upload them into WordPress using the media uploader.</p>
<h3>Deciding Where To Put The Thumbnail Code</h3>
<p>Since I want the thumbnails to show up on the main page of the site in the list of recent posts down the content section, I need to edit the index.php that displays the content. Your site may use the_content() but in this example the site is using the_excerpt(). It doesn&#8217;t really matter, so long as this stuff goes inside the loop but before the spot you want to show your photo.</p>
<p><code>&lt;div class=&quot;thecontent&quot;&gt;<br />
&lt;?php the_excerpt(); ?&gt;<br />
&lt;span&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;&lt;?php the_title(); ?&gt;&quot; class=&quot;readon&quot;&gt;Read the rest of '&lt;?php the_title(); ?&gt;'&lt;/a&gt;&lt;/span&gt;<br />
&lt;/div&gt; &lt;!-- end thecontent --&gt;<br />
</code></p>
<p>I&#8217;m going to add the bit of code right above the call to the_excerpt() because that&#8217;s easiest at this point.</p>
<p><code><span style="font-weight:bold; color:red;">&lt;div class=&quot;thecontent&quot;&gt;<br />
&lt;!-- get the thumbnail --&gt;<br /></span><br />
&lt;?php<br />
// Get images attached to the post<br />
$img = null;<br />
$args = array(<br />
'post_type' =&gt; 'attachment',<br />
'post_mime_type' =&gt; 'image',<br />
'numberposts' =&gt; -1,<br />
'order' =&gt; 'ASC',<br />
'post_status' =&gt; null,<br />
'post_parent' =&gt; $post-&gt;ID<br />
);<br />
$attachments = get_posts($args);<br />
if ($attachments) {<br />
foreach ($attachments as $attachment) {<br />
$img = wp_get_attachment_thumb_url( $attachment-&gt;ID );<br />
break;<br />
} ?&gt;<br />
&lt;!-- Display the image in here --&gt;<br />
&lt;?php }<br />
?&gt;<br /><span style="font-weight:bold; color:red;"><br />
&lt;!-- end get the thumbnail --&gt;<br />
&lt;?php the_excerpt(); ?&gt;<br /></span><br />
</code></p>
<h3>Display the Thumbnails on the Main Page</h3>
<p>Now the code is actually in the area it should be, but it&#8217;s still not going to show anything until we put something in place of the &#8216;&lt;!&#8211; Display the image in here &#8211;&gt;&#8217; placeholder. What the code HAS done is created the $img variable we can call. So let&#8217;s get that working by putting in some code that will call the image.</p>
<p><code>&lt;div class=&quot;thecontent&quot;&gt;<br />
&lt;!-- get the thumbnail --&gt;<br />
&lt;?php<br />
//Get images attached to the post<br />
$img = null;<br />
$args = array(<br />
'post_type' =&gt; 'attachment',<br />
'post_mime_type' =&gt; 'image',<br />
'numberposts' =&gt; -1,<br />
'order' =&gt; 'ASC',<br />
'post_status' =&gt; null,<br />
'post_parent' =&gt; $post-&gt;ID<br />
);<br />
$attachments = get_posts($args);<br />
if ($attachments) {<br />
foreach ($attachments as $attachment) {<br />
$img = wp_get_attachment_thumb_url( $attachment-&gt;ID );<br />
break;<br />
} ?&gt;<br /><span style="font-weight:bold; color:red;"><br />
&lt;!-- ***** THE ACTUAL IMAGE ***** --&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
&nbsp;&nbsp;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;img src=&quot;&lt;?php echo $img; ?&gt;&quot; /&gt;<br />
&nbsp;&nbsp;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- ***** END THE ACTUAL IMAGE ***** --&gt;<br /></span><br />
&lt;?php }<br />
?&gt;<br />
&lt;!-- end get the thumbnail --&gt;<br />
&lt;?php the_excerpt(); ?&gt;<br />
</code></p>
<p>What the above code has done is take the placeholder and replace it with a call to the image.</p>
<p>Then since this is for a front page thumbnail, we want people to go to the main article so we create a link around the image that points to the article.</p>
<p>Finally, for CSS styling I wrapped it in a span called the-thumbnail (you can wrap it in something other than a span, name the class anything you like, and style it any which way you can think of).</p>
<h3>But What If&#8230; There&#8217;s No Image?</h3>
<p>But wait&#8230; what if my client forgets to add an image to a post? That one article will look strange on the main page without an image when most of the others have one.</p>
<p>I want to create a fail-safe for dealing with an instance where she might forget to put in a photo for the post. What to do first is create some kind of dummy image (maybe just a large square with the site logo / branding or whatever you want). Upload that image somewhere.</p>
<p><code>&lt;!-- ***** THE ACTUAL IMAGE ***** --&gt;<br />
&nbsp;<br />
&lt;!-- # if post has an image # --&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
&nbsp;&nbsp;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;img src=&quot;&lt;?php echo $img; ?&gt;&quot; /&gt;<br />
&nbsp;&nbsp;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- # END if post has an image # --&gt;<br />
<span style="font-weight:bold; color:red;"><br />
&lt;!-- # if post doesn't have an image --&gt;<br />
&lt;?php  } else { ?&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
  &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
    &lt;img src=&quot;http://thedomain.com/fallback-thumb.jpg&quot; /&gt;<br />
  &lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- # END if post doesn't have an image --&gt;<br /></span><br />
&lt;!-- ***** END THE ACTUAL IMAGE ***** --&gt;</code></p>
<p>The most important line in that new section is &lt;?php  } else { ?&gt; &#8212; that tells it to do something if there is no photo.</p>
<p>You&#8217;ll see that you can just as easily change the url of the image to be any image location you upload the fall-back image to.</p>
<h3>Putting It All Together</h3>
<p>So here&#8217;s what we came up with after that. I&#8217;ll highlight the sections of my template code so you can see where I put it inside the template. Remember, your index page may not use the_excerpt() &#8211; it may use the_content(). That&#8217;s perfectly ok so long as:</p>
<p>1. You put the code that generates the thumbnail somewhere inside the loop &#8211; the loop beginning looks like this: <code>&lt;?php if (have_posts()) : while (have_posts()) : the_post(); ?&gt;</code><br />
2. You put the image display code where you want it to be.</p>
<p>So here&#8217;s the final code I used on my clients site:</p>
<p><code><span style="font-weight:bold; color:red;">&lt;div class=&quot;thecontent&quot;&gt;<br /></span><br />
&lt;!-- get the thumbnail --&gt;<br />
&lt;?php<br />
//Get images attached to the post<br />
$img = null;<br />
$args = array(<br />
'post_type' =&gt; 'attachment',<br />
'post_mime_type' =&gt; 'image',<br />
'numberposts' =&gt; -1,<br />
'order' =&gt; 'ASC',<br />
'post_status' =&gt; null,<br />
'post_parent' =&gt; $post-&gt;ID<br />
);<br />
$attachments = get_posts($args);<br />
if ($attachments) {<br />
foreach ($attachments as $attachment) {<br />
$img = wp_get_attachment_thumb_url( $attachment-&gt;ID );<br />
break;<br />
} ?&gt;<br />
&lt;!-- ***** THE ACTUAL IMAGE ***** --&gt;<br />
&nbsp;<br />
&lt;!-- # if post has an image # --&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
&nbsp;&nbsp;&lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
&nbsp;&nbsp;&nbsp;&nbsp;&lt;img src=&quot;&lt;?php echo $img; ?&gt;&quot; /&gt;<br />
&nbsp;&nbsp;&lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- # END if post has an image # --&gt;<br />
&nbsp;<br />
&lt;!-- # if post doesn't have an image --&gt;<br />
&lt;?php  } else { ?&gt;<br />
&lt;span class=&quot;the-thumbnail&quot;&gt;<br />
  &lt;a href=&quot;&lt;?php the_permalink(); ?&gt;&quot;&gt;<br />
    &lt;img src=&quot;http://thedomain.com/fallback-thumb.jpg&quot; /&gt;<br />
  &lt;/a&gt;<br />
&lt;/span&gt;<br />
&lt;!-- # END if post doesn't have an image --&gt;<br />
&nbsp;<br />
&lt;!-- ***** END THE ACTUAL IMAGE ***** --&gt;<br />
&lt;?php }<br />
?&gt;<br />
&lt;!-- end get the thumbnail --&gt;<br /><span style="font-weight:bold; color:red;"><br />
&lt;?php the_excerpt(); ?&gt;</span></code></p>
<p>Oh, and remember &#8212; if you don&#8217;t like the size your thumbnails are coming out as &#8212; change it in Settings -> Media.</p>
<p>I hope you found that useful <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  </p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/08/21/automatic-post-thumbnails-without-plugins/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Make Your Own Short URLs in WordPress</title>
		<link>http://blog.websitestyle.com/index.php/2009/04/17/make-your-own-short-urls-in-wordpress/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/04/17/make-your-own-short-urls-in-wordpress/#comments</comments>
		<pubDate>Fri, 17 Apr 2009 20:49:04 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[short urls]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=443</guid>
		<description><![CDATA[If you've ever wanted to provide your own short URL's you're in luck. This series will show you how to do just that. Today, we're talking about how to do this if you use WordPress for blogging.]]></description>
			<content:encoded><![CDATA[<div id="attachment_433" class="wp-caption aligncenter" style="width: 460px"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/04/anti-url-shorteners.gif" alt="Your website URL is better than someone elses." title="anti-url-shorteners" width="450" height="239" class="size-full wp-image-433" /><p class="wp-caption-text">Quit Using URL Shortener Services.</p></div>
<h3>Why Not Just Use Some URL Shortening Service?</h3>
<p>If you&#8217;re arriving at this article directly, head back to part one to read about <a href="http://blog.websitestyle.com/index.php/2009/04/15/i-dont-trust-short-urls/">why to make your own short urls</a>.</p>
<p>In a nutshell, I&#8217;ll summarize the whole article by saying that asking people to trust a cloaked link is not something you should ask anyone to do.</p>
<h3>Methods of Shortening URLs</h3>
<p>There are several different ways to handle URL shortening, and I&#8217;m going to list as many as I can think of here.</p>
<h4>For WordPress Self-Install Users</h4>
<p>If you use WordPress, you have it fairly easy. Remember back to the day you installed WordPress and you had those &#8216;ugly&#8217; urls that were just your domain and a number? Did you realize those URLs still work? They do, nowadays they just redirect to whatever nice readable format you changed your permalinks to be (which I&#8217;m sure you did, riiighhht?).</p>
<p>In fact, you users have two options. Use a plugin or add the code yourself.</p>
<h5>The Plugin Option:</h5>
<p>A good one is <a href="http://extrafuture.com/projects/la-petite-url/">la petite url</a> which uses your own domain to make your short url. When you save a post it shows the short url in the sidebar of your administrative interface. You can then drag this into your post. If you&#8217;re comfortable editing your theme files, you can add a bit of code to your single and page files so that it shows up automatically. It&#8217;s available on the WordPress Plugin repository here: <a href="http://wordpress.org/extend/plugins/le-petite-url/">la petite url</a></p>
<h5>The Template Option:</h5>
<p>Just head into your template editor and add a link to your short url into your Single and Page files. This should work fine for most templates, although a highly customized one may have different page types that you will need to add this to separately.</p>
<p>For a simple text display of the link, add the following code where ever you want in your theme file:<br />
<code>&lt;span&gt;Short URL: &lt;?php get_bloginfo('url'); ?&gt;/?&lt;?php the_ID(); ?&gt;&lt;/span&gt;</code></p>
<p>If you want to use a textbox type of display where people can easily select the text, try a variation on something like this:<br />
<code>&lt;span&gt;Short URL: &lt;input type=&quot;text&quot; value=&quot;&lt;?php get_bloginfo('url'); ?&gt;/?&lt;?php the_ID(); ?&gt;&quot; style=&quot;width:50%;&quot;/&gt;&lt;/span&gt;</code></p>
<h4>For WordPress.com Users</h4>
<p>As you know, you can&#8217;t install plugins or edit template code if you have a WordPress.com blog. You can, however, still make your links a bit shorter than they are now because your posts still have a numeric version available.</p>
<p>You would need to add (manually) text at the bottom of your posts to provide the short link to your visitors. The link would look like this:</p>
<p>http://yoursite.wordpress.com/?POSTID</p>
<p>But how do you find the POST ID for a WordPress.com blog? It&#8217;s not hard at all. I&#8217;m going to provide two screenshots to show you where to find it.</p>
<p><strong>From the posts list screen:</strong><br />
<div id="attachment_450" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/04/wp-find-post-num-list.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/04/wp-find-post-num-list-300x132.gif" alt="Finding Post ID From List Screen." title="wp-find-post-num-list" width="300" height="132" class="size-medium wp-image-450" /></a><p class="wp-caption-text">Finding Post ID From List Screen.</p></div></p>
<p><strong>From the editing screen:</strong><br />
<div id="attachment_452" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/04/wp-find-post-num-editing.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/04/wp-find-post-num-editing-300x133.gif" alt="Find Post ID While Editing." title="wp-find-post-num-editing" width="300" height="133" class="size-medium wp-image-452" /></a><p class="wp-caption-text">Find Post ID While Editing.</p></div></p>
<p>Remember, for WordPress.com people, this means adding that at the bottom of your posts when you make them.</p>
<h3>The series so far:</h3>
<p>Part 1: <a href="http://blog.websitestyle.com/index.php/2009/04/15/i-dont-trust-short-urls/">I Don&#8217;t Trust Short URL&#8217;s</a><br />
Part 2: This article<br />
Part 3: <a href="http://blog.websitestyle.com/index.php/2009/04/19/make-your-own-short-urls-in-ee-mt-joomla-drupal/">Make Your Own Short URLs in EE, MT, Joomla and Drupal</a><br />
Part 4: <a href="http://blog.websitestyle.com/index.php/2009/04/21/make-your-own-short-urls-with-domains-or-software/">Make Your Own Short URLs With Domains or Software</a></p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/04/17/make-your-own-short-urls-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>WordPress Searching By Category</title>
		<link>http://blog.websitestyle.com/index.php/2009/03/12/wp-search-by-category/</link>
		<comments>http://blog.websitestyle.com/index.php/2009/03/12/wp-search-by-category/#comments</comments>
		<pubDate>Thu, 12 Mar 2009 21:36:41 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[category]]></category>
		<category><![CDATA[search]]></category>
		<category><![CDATA[search by category]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/?p=346</guid>
		<description><![CDATA[Sometimes you really want to just search a specific category &#8211; more importantly, you might want your visitor to be able to do that. The generic search is going to search everything, well not exactly since the WordPress search is fairly lousy without some plugin help, but it will work for category searching just fine. [...]]]></description>
			<content:encoded><![CDATA[<p>Sometimes you really want to just search a specific category &#8211; more importantly, you might want your visitor to be able to do that.</p>
<p>The generic search is going to search everything, well not exactly since the WordPress search is fairly lousy without some plugin help, but it will work for category searching just fine. In fact, it&#8217;s only going to take one line of code to add the functionality to your search, if you&#8217;re using a basic theme like the WordPress Default. Custom themes might be more of an issue, so if you get stuck, paste the code that handles your search in the comments and I&#8217;ll -try- to help, no guarantees.</p>
<p>Ok, let&#8217;s do this with the WordPress Default theme.</p>
<p>The default theme search box should look like this in your sidebar:<br />
<div id="attachment_347" class="wp-caption aligncenter" style="width: 402px"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/03/wp-search-cats-before.gif" alt="The Search Box Before Category Search." title="wp-search-cats-before" width="392" height="259" class="size-full wp-image-347" /><p class="wp-caption-text">The Search Box Before Category Search.</p></div></p>
<p>We need to add our line of code to give the users an option to search by categories. So I want you to head over to Appearance -> Editor which will pull up your template files. This will show you the right template files IF you are currently using the WordPress Default theme, if not, use the dropdown box in the right area of the page to switch to the WordPress Default theme.</p>
<p>On the right side of the page, click on the Search Form (searchform.php) file to open that one for editing. The code page you&#8217;re viewing inside should look like this:</p>
<div id="attachment_348" class="wp-caption aligncenter" style="width: 310px"><a href="http://blog.websitestyle.com/wp-content/uploads/2009/03/wp-search-cats-during.gif"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/03/wp-search-cats-during-300x147.gif" alt="WordPress Default Search Form Editing." title="wp-search-cats-during" width="300" height="147" class="size-medium wp-image-348" /></a><p class="wp-caption-text">WordPress Default Search Form Editing.</p></div>
<p>The code looks like this:<br />
<code>&lt;form method=&quot;get&quot; id=&quot;searchform&quot; action=&quot;&lt;?php bloginfo('home'); ?&gt;/&quot;&gt;<br />
&lt;div&gt;&lt;input type=&quot;text&quot; value=&quot;&lt;?php the_search_query(); ?&gt;&quot; name=&quot;s&quot; id=&quot;s&quot; /&gt;<br />
&lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;Search&quot; /&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
</code></p>
<p>We&#8217;re going to add one line as follows:</p>
<p><code>&lt;form method=&quot;get&quot; id=&quot;searchform&quot; action=&quot;&lt;?php bloginfo('home'); ?&gt;/&quot;&gt;<br />
&lt;div&gt;&lt;input type=&quot;text&quot; value=&quot;&lt;?php the_search_query(); ?&gt;&quot; name=&quot;s&quot; id=&quot;s&quot; /&gt;<br />
<strong>&lt;?php wp_dropdown_categories('depth=0&amp;orderby=name&amp;hide_empty=1&amp;show_option_all=Search Everything'); ?&gt;</strong><br />
&lt;input type=&quot;submit&quot; id=&quot;searchsubmit&quot; value=&quot;Search&quot; /&gt;<br />
&lt;/div&gt;<br />
&lt;/form&gt;<br />
</code></p>
<p>So let&#8217;s break down what that line is doing:</p>
<p><code>&lt;?php wp_dropdown_categories('depth=0&amp;orderby=name&amp;hide_empty=1&amp;show_option_all=Search Everything'); ?&gt;</code></p>
<p><strong>Depth = 0</strong> is setting it so that we&#8217;re seeing ALL categories, not just parent or child categories. In another article coming up I&#8217;ll show you how to be more specific about categories when dealing with parent/child categories.</p>
<p><strong>Order By = Name</strong> is telling them to show in alphabetical order.</p>
<p><strong>Hide Empty = 1</strong> is making sure we don&#8217;t see categories that have no posts in them to be searched.<br />
<strong><br />
Show Option All = Search Everything</strong> is creating an option for them to search all the posts and should be the default.</p>
<p>What do we get?</p>
<div id="attachment_353" class="wp-caption aligncenter" style="width: 216px"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/03/wp-search-cats-after.gif" alt="The Final Search By Category view for the WordPress Default." title="wp-search-cats-after" width="206" height="187" class="size-full wp-image-353" /><p class="wp-caption-text">Search By Category.</p></div><br />
<div id="attachment_377" class="wp-caption alignright" style="width: 147px"><img src="http://blog.websitestyle.com/wp-content/uploads/2009/03/wp-search-cats-after2.gif" alt="Showing Dropdown" title="wp-search-cats-after2" width="137" height="187" class="size-full wp-image-377" /><p class="wp-caption-text">Showing Dropdown</p></div>
<p>Now it&#8217;s up to you to style it and make it look pretty <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2009/03/12/wp-search-by-category/feed/</wfw:commentRss>
		<slash:comments>22</slash:comments>
		</item>
		<item>
		<title>Sneak Peek &#8211; New WordPress Theme</title>
		<link>http://blog.websitestyle.com/index.php/2008/03/24/sneak-peek-new-wordpress-theme/</link>
		<comments>http://blog.websitestyle.com/index.php/2008/03/24/sneak-peek-new-wordpress-theme/#comments</comments>
		<pubDate>Mon, 24 Mar 2008 14:11:54 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Templates]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[minimal]]></category>
		<category><![CDATA[minimal overhead]]></category>
		<category><![CDATA[theme]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2008/03/24/sneak-peek-new-wordpress-theme/</guid>
		<description><![CDATA[I&#8217;ve been working on a new WordPress theme that highlights what I enjoy in minimalist design. It&#8217;s called Minimal Overhead. As you can see from the above screen shots, this design is going to come with a few color themes, and you can easily add your own as well. The top bar is a CSS [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been working on a new WordPress theme that highlights what I enjoy in minimalist design. It&#8217;s called Minimal Overhead.</p>
<p><a href="http://img255.imageshack.us/img255/1186/minimaloverheadprereleasa2.jpg"><img src="http://img355.imageshack.us/img355/9953/minimaloverheadprereleatu7.jpg" alt="Small size of Minimal Overhead preview." /></a></p>
<p><a href="http://img507.imageshack.us/img507/5071/minimaloverheadprereleaiz4.jpg"><img src="http://img523.imageshack.us/img523/3889/minimaloverheadprereleaex4.jpg" alt="Small size of Minimal Overhead preview second color." /></a></p>
<p>As you can see from the above screen shots, this design is going to come with a few color themes, and you can easily add your own as well.</p>
<p>The top bar is a CSS drop-down menu. For those on browsers not supporting the CSS, clicking the links will instead toss people to another area to read the subcategories and subpages etc&#8230; I&#8217;m still in personal debate over how to handle that menu. I&#8217;m experiencing a small inner rebellion against using Javascript to make the menu work for IE, and would prefer to just have the design follow a rollback for IE like any of the other older browsers will see. In either case, the menu options will be available, just in different ways.</p>
<p>This is, in my opinion, the kind of theme for someone who needs structure in order to keep their blog minimal feeling without letting it get cluttered over time. I&#8217;m not going to add in places for people to drag a million widgets and fill up all the empty space &#8211; that defeats the purpose. </p>
<p>The theme is about keeping things simple.</p>
<p>I&#8217;ll post another update when I&#8217;ve got more to show.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2008/03/24/sneak-peek-new-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using WordPress Excerpts</title>
		<link>http://blog.websitestyle.com/index.php/2008/02/29/using-wordpress-excerpts/</link>
		<comments>http://blog.websitestyle.com/index.php/2008/02/29/using-wordpress-excerpts/#comments</comments>
		<pubDate>Fri, 29 Feb 2008 18:54:52 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Code]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2008/02/29/using-wordpress-excerpts/</guid>
		<description><![CDATA[One of the things that I&#8217;ve noticed over time is that the excerpt functionality of WordPress is often neglected. For a long time I thought that perhaps the idea of having to type of an excerpt just triggered the lazy person in most of us and we didn&#8217;t feel like doing it. I&#8217;m personally a [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://img507.imageshack.us/img507/9373/phptheexcerptheadlineec0.gif" title="Doing more with PHP the Excerpt." alt="Doing more with PHP the Excerpt." class="right" /> One of the things that I&#8217;ve noticed over time is that the excerpt functionality of WordPress is often neglected. For a long time I thought that perhaps the idea of having to type of an excerpt just triggered the lazy person in most of us and we didn&#8217;t feel like doing it. I&#8217;m personally a big fan of excerpts, even if I don&#8217;t write them up on this blog as much as I do on other blogs, so I started to take a closer look at why excerpts might be so neglected.</p>
<p>I very quickly came to develop a theory that perhaps it&#8217;s because users don&#8217;t think they do anything &#8211; and in many cases they&#8217;re absolutely correct. There are a startling number of WordPress themes that don&#8217;t include a built in ability to show the excerpt anywhere, so it&#8217;s no wonder people see little use in typing up extra words that aren&#8217;t even shown. Much to my surprise, I realized that even the 2 themes that ship with WordPress (the default and the classic) don&#8217;t automatically display excerpts. Very odd.</p>
<p>In my way of thinking, the MAIN page on a typical blog should display posts with the following conditions applied (granted, I&#8217;ve created some VERY custom themes that you&#8217;d never guess are blog driven, so keep in mind that this is for the &#8216;typical blog&#8217; style) :</p>
<ol>
<li>Check to see if there is an excerpt, if so, show the excerpt only.</li>
<li>If no excerpt is present, check to see if there is a &#8216;more&#8217; tag when showing the post and use a link to continue reading.</li>
<li>If no excerpt or more tag is found, then display the whole post.</li>
</ol>
<p>So how do you do that with WordPress in your templates? It&#8217;s pretty easy.</p>
<p>I&#8217;ll give you instructions using the WordPress default template (the one based on Kubrick at the time of this writing).</p>
<ol>
<li>In the Administration backend, go to Presentation -&gt; Theme Editor</li>
<li>Select &#8216;WordPress default&#8217; from the drop-down list, then click the select button.</li>
<li>On the right hand side, locate the file link that says &#8216;Main Index Template&#8217; and click on it.</li>
</ol>
<p>Now that you are in the correct section, locate the following piece of code:<br />
<code>&lt;div class=&quot;entry&quot;&gt;<br />
&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;<br />
&lt;/div&gt;</code></p>
<p>You are going to replace that entire piece of code with the following:</p>
<p><code>&lt;div class=&quot;entry&quot;&gt;<br />
&lt;?php if (!empty($post-&gt;post_excerpt)) : ?&gt;<br />
&lt;?php the_excerpt(); ?&gt;<br />
&lt;?php else : ?&gt;<br />
&lt;?php the_content('Read the rest of this entry &amp;raquo;'); ?&gt;<br />
&lt;?php endif; ?&gt;<br />
&lt;/div&gt;</code></p>
<p>That will create the functionality to do exactly what I outlined above, however, if you&#8217;d like to also add a link to the post underneath the excerpt (if one exists) so that it looks similar to the way a &#8216;more&#8217; tagged post will look, you can do that as well. To create a link to the post under the excerpt, simply go back to this line:</p>
<p><code>&lt;?php the_excerpt(); ?&gt;</code></p>
<p>And add a line similar to the following underneath that line:</p>
<p><code>&lt;p&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot; rel=&quot;bookmark&quot; title=&quot;Permanent Link to &lt;?php the_title(); ?&gt;&quot;&gt;Read the full post &amp;raquo;&lt;/a&gt;&lt;/p&gt;</code></p>
<p>That line is just normal WordPress post link, so you can modify that to suit your needs design needs.</p>
<p>The finish product code display various types of posts like this, depending on whether they have excerpts, more tags, or none:</p>
<p><img src="http://img408.imageshack.us/img408/5830/wpexcerptsresultviewsqk3.jpg" alt="Various Views of Excerpts." /></p>
<p>Of course, this example uses the WordPress default template, but the same code can be used on most any template if you find the index.php or main index page and the spot where &lt;?php the_content(); ?&gt; is in the code.</p>
<p>Have fun! </p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2008/02/29/using-wordpress-excerpts/feed/</wfw:commentRss>
		<slash:comments>15</slash:comments>
		</item>
		<item>
		<title>Bad Behavior &#8211; Behaving Badly?</title>
		<link>http://blog.websitestyle.com/index.php/2007/12/07/bad-behavior-behaving-badly/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/12/07/bad-behavior-behaving-badly/#comments</comments>
		<pubDate>Fri, 07 Dec 2007 14:29:19 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/12/07/bad-behavior-behaving-badly/</guid>
		<description><![CDATA[Today I had to deactivate my Bad Behavior plugin for WordPress &#8211; at least temporarily. It seems there have been some people trying to post to my blog who are getting a message that they have a blocked IP address. Amusingly enough, I got the same error as the admin. It looks like a new [...]]]></description>
			<content:encoded><![CDATA[<p>Today I had to deactivate my Bad Behavior plugin for WordPress &#8211; at least temporarily. It seems there have been some people trying to post to my blog who are getting a message that they have a blocked IP address.</p>
<p>Amusingly enough, I got the same error as the admin.</p>
<p>It looks like a new version came out with a fix, but I&#8217;m going to give it a bit of time just in case, watching the <a href="http://www.bad-behavior.ioerror.us/2007/12/06/bad-behavior-2011/">comments on the page about the upgrade</a>, just to make sure it&#8217;s working as it should first. </p>
<p>If you haven&#8217;t upgraded to Bad Behavior 2.0.11 &#8211; you might want to consider looking into doing that. I had no idea people were getting blocked trying to comment until a few of my wonderful visitors were nice enough to email me and let me know.</p>
<p>To those who have attempted to comment &#8211; please accept my apologies for the quirky &#8216;behavior&#8217; lately. (Yes, it&#8217;s early, and I&#8217;m cracking corny jokes.)</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/12/07/bad-behavior-behaving-badly/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Website Style &#8211; Restyled</title>
		<link>http://blog.websitestyle.com/index.php/2007/11/01/website-style-restyled/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/11/01/website-style-restyled/#comments</comments>
		<pubDate>Thu, 01 Nov 2007 15:33:59 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Tech News]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/11/01/website-style-restyled/</guid>
		<description><![CDATA[After months of tossing around ideas on how I wanted to redesign my main site, WebsiteStyle.com, I finally came up with what I&#8217;m calling Version 1.0 of the redesign. It was not intended to take quite so long, but ah well. Not only was it done in my sparse free time between client work, I [...]]]></description>
			<content:encoded><![CDATA[<p>After months of tossing around ideas on how I wanted to redesign my main site, <a href="http://www.websitestyle.com">WebsiteStyle.com</a>, I finally came up with what I&#8217;m calling Version 1.0 of the redesign.</p>
<p>It was not intended to take quite so long, but ah well. Not only was it done in my sparse free time between client work, I had a few other personal things come up that took me out of commission for a bit (a death in the family, a major case of the flu I&#8217;m still getting over, lots of school stuff with the kids, etc..). In the end, I think it came out good for a first version of a re-design.</p>
<p>Part of the problem of designing for yourself, as a designer, is that it&#8217;s never perfect enough, and I have the feeling that this will be a case of always feeling the need to tweak and adjust and modify <em>ad infinitum</em>.</p>
<p>The old main site looked like this for the last couple of years:<br />
<a href="http://img148.imageshack.us/img148/671/oldindexlgvl0.gif" title="View full size screenshot."><br />
<img src="http://img148.imageshack.us/img148/1764/oldindexaf7.gif" alt="The old version of the Website Style main site." /></a></p>
<p>The new version is much more reflective of my likes in color and design:</p>
<p><a href="http://img476.imageshack.us/img476/8623/newindexih4.gif" title="View full size screenshot."><img src="http://img476.imageshack.us/img476/8329/newindexsmnr3.gif" alt="The new version of the Website Style main site." /></a></p>
<p>I&#8217;d say it came out to be a pretty major overhaul of the design. </p>
<p>Granted, it wasn&#8217;t without issues, which is why I&#8217;m calling it Version 1.0 of the new design. A few things glitched at the last minute, like the jQuery effects suddenly not working (I haven&#8217;t tried yet to see exactly what caused this &#8211; whether it was a new version change or if I just added a typo somewhere.), and having some lovely issues with Google reading my sitemap/robots files (or not reading them for that matter) so that my the 5-6 Page rank is suddenly coming up &#8216;not available&#8217;. </p>
<p>On a design scale, it&#8217;s going to need an alternate color version and I realize that. Not everyone is a fan of dark colors like I am (even if all my testing tools say I used enough contrast to make it readable). It&#8217;s a priority on my to-do list for the next version. In fact, in an ideal world I&#8217;d like to offer several swappable design themes that are entirely different. That should be easy enough considering that the new site design is one I converted to a WordPress theme. Yes, that does mean that I&#8217;m using WordPress as a content management system on my main site now. I figured that since I&#8217;ve been suggesting WordPress as a CMS for my clients, I might as well &#8216;practice what I preach&#8217; so to speak.</p>
<p>In the end, this is what it has consisted of, and been built with, on a technical level:</p>
<ul>
<li>Photoshop for the design.</li>
<li>Plain text hand-coding to XHTML.</li>
<li>Converting the XHTML to a custom WordPress theme.</li>
<li>Custom coding for <a href="http://blog.websitestyle.com/index.php/2007/09/14/wordpress-how-to-show-child-pages-only/">child pages on WordPress</a>.</li>
<li><a href="http://rawlinson.us/blog/articles/feedlist-plugin/">FeedList plugin</a> for secondary content links from this blog.</li>
<li><a href="http://dancameron.org/wordpress/wordpress-plugins/search-everything-wordpress-plugin">SearchEverything plugin</a> for full search &#8211; it uses lots of WP pages.</li>
<li><a href="http://green-beast.com/blog/?page_id=136">Contact form plugin</a> from Green Beast with custom CSS mods.</li>
<li><a href="http://wordpress.org/extend/plugins/stats/">WordPress.com stats plugin</a> for .. well, stats.</li>
<li><a href="http://www.arnebrachhold.de/projects/wordpress-plugins/google-xml-sitemaps-generator/">Google XML Sitemap Generator plugin</a>.</li>
<li><a href="http://www.4mj.it/slimbox-wordpress-plugin/">Slimbox with Mootools for WP</a> &#8211; Deactivated as a plugin and just pulling files from the plugin directory &#8211; it&#8217;s a long story.</li>
<li><a href="http://www.mikeindustries.com/sifr">sIFR</a> for special font headings.</li>
<li><a href="http://jquery.com/">jQuery</a> for effects &#8211; still needs tweaking.</li>
</ul>
<p>For now, that&#8217;s what&#8217;s been involved in the CMS&#8217;ification of WordPress for this design. There is quite alot still on the agenda, and I&#8217;ll document as I go how I continue to evolve the site &#8211; just in case anyone aside from me finds it as fun and interesting.</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/11/01/website-style-restyled/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>13 Eyecatching WordPress Header Designs</title>
		<link>http://blog.websitestyle.com/index.php/2007/09/27/13-eyecatching-wordpress-header-designs/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/09/27/13-eyecatching-wordpress-header-designs/#comments</comments>
		<pubDate>Thu, 27 Sep 2007 17:49:17 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Layout]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/09/27/13-eyecatching-wordpress-header-designs/</guid>
		<description><![CDATA[( Note: If you read the article, it will give the massive amount of images time to load for you. Unless I&#8217;m really boring the life out of you, in which case, please feel free to scroll down. ) So I was browsing around looking at WordPress themes (again) and I decided to conduct an [...]]]></description>
			<content:encoded><![CDATA[<p><strong>( Note: If you read the article, it will give the massive amount of images time to load for you. Unless I&#8217;m really boring the life out of you, in which case, please feel free to scroll down. )</strong></p>
<p>So I was browsing around looking at WordPress themes (again) and I decided to conduct an experiment on my &#8216;reaction&#8217; to the themes. I ended up collecting a list the 13 most eye-catching, reaction causing (good and bad), non-traditional theme headers I saw yesterday.</p>
<p>Consider this &#8216;inspiration&#8217; for the non-advertising specialist. Or just use the images as ideas of what you could possibly do with your own site. As a web designer I&#8217;m often expected to know what kind of images and text are best for marketing and advertising etc.. Well, I don&#8217;t know about you, but my knowledge of that is fairly limited. That&#8217;s what advertising and marketing people are for. I know people who work in advertising &#8211; they practically have an encyclopedia of &quot;what images cause what reactions in people&quot; and &quot;what works get people to do certain things&quot; and probably lots more I&#8217;m unaware of.</p>
<p>However, even with my limited knowledge, I think most people have heard about the &#8216;above the fold&#8217; importance. That need to grab people and make them at least move their eyes around and possibly stay a bit longer. Attention getting top areas of your site. Something that makes the speed-browser in all of us slow down. All the screen-shots are above the fold for me &#8211; only what I could see immediately. For reference, I&#8217;m on a wide screen monitor with high resolution, but I also have 7 Firefox toolbars (don&#8217;t ask) taking up space at the top.</p>
<p>I look at theme houses (sites that are mega-lists of themes) ALOT, and I realize there are actually a couple of stages you have to go through to get someone to actually look at your theme:</p>
<p>1. The first is that you have to get them to take notice of your design from a little screenshot.<br />
2. Part two is to get them to click that all-important &#8216;demo&#8217; link so they look closer at it.<br />
3. Part three is getting them not to hit the back button because they hate what is above the fold on site. </p>
<p>If you can keep them there a few seconds, you might actually get them to like the entire theme and consider downloading it.</p>
<p>So, back to the experiment.</p>
<p>I decided to write down what I thought about as I was browsing. I wanted to see which ones got the most reaction out of me based on the header section. Obviously the themes I&#8217;m going to show you got me to click on the little thumbnail, but I&#8217;m going to share my first impression of some of the themes I looked at yesterday.</p>
<p>Now, hopefully by the time you&#8217;ve gotten here, all the images have loaded. So have fun, and feel free to try out the demo links so you can see if your &#8216;up close&#8217; reaction was anything like mine.</p>
<p><strong>Disclaimer: </strong>I am not advocating these themes as great themes. In fact, I don&#8217;t like most of them as entire themes. Some are actually just plain broken beyond the header. These are just examples of eye-catching header designs, nothing more.</p>
<p><strong>Odd Note: </strong>Some of these themes actually ended up having the same author. This was not intended, I merely bookmarked the designs that got the most reaction and then when I was writing this up I discovered some had the same designer.</p>
<h3>#1 &#8211; Forbidden Forest</h3>
<p><img src="http://img228.imageshack.us/img228/51/forbiddenforestsmlm8.gif" alt="Forbidden Forest screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;Wow. That&#8217;s really cool looking.&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=1015">Theme page.</a> <a href="http://test.wpthemesfree.com/?preview_theme=forbidden-forest-10">Online Demo</a>. <a href="http://www.makequick.com/">Designer</a>.</p>
<h3>#2 &#8211; A Good Catch</h3>
<p><img src="http://img231.imageshack.us/img231/2466/agoodcatchsmba7.gif" alt="A good catch screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;People just LOVE to use animals to make people go &#8216;awww.&#8217; Cute sketches.&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=979">Theme page.</a> <a href="http://test.wpthemesfree.com/?preview_theme=a-good-catch">Demo page</a>. <a href="http://www.zazzafooky.com/blog/">Designer</a>.</p>
<h3>#3 &#8211; Cherry Swirls</h3>
<p><img src="http://img162.imageshack.us/img162/8598/cherryswirlssmkp7.gif" alt="Cherry Swirls screenshot." /></p>
<p><strong>Thoughs:</strong>&quot;Whew, that&#8217;s alot of color. I like the sweeping curves. Cutesy and summery but that bright yellow is evil.&quot;<br />
<strong>Links:</strong> <a href="http://wp-themes.erikgyepes.com/2007/08/06/cherry-swirls/">Theme page</a>. <a href="http://wp-themes.erikgyepes.com/download-manager.php?id=33">Demo page</a>.</p>
<h3>#4 &#8211; City Slicker</h3>
<p><img src="http://img515.imageshack.us/img515/6719/cityslickeraa4.gif" alt="City Slicker screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;Now that&#8217;s neat. I like all the graphics at the top&#8230; but why so teeny?&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=805">Theme page</a>. <a href="http://www.wpthemesfree.com/test.php?theme_id=805">Demo page</a>. <a href="http://grabatheme.com/">Designer</a>.</p>
<h3>#5 &#8211; Desktop</h3>
<p><img src="http://img258.imageshack.us/img258/4873/desktopeg0.gif" alt="Desktop screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;I love the collage headers. Always makes me stop and look at all the individual stuff.&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=677">Theme page</a>. <a href="http://test.wpthemesfree.com/?preview_theme=desktop-10">Demo page</a>. <a href="http://news-blog.in/">Designer</a>.</p>
<h3>#6 &#8211; Dreaming Off</h3>
<p><img src="http://img249.imageshack.us/img249/6669/dreamingoffnv7.gif" alt="Dreaming Off screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;Lots of color, but I like how it is hanging on the sides like that. It makes a major impression above the fold, but its actually not the &#8216;header&#8217; that does it but everything that&#8217;s around it.<br />
<strong>Links:</strong> <a href="http://wp-themes.erikgyepes.com/2007/07/26/dreaming-off/">Theme page</a>. <a href="http://wp-themes.erikgyepes.com/download-manager.php?id=23">Demo page</a>.</p>
<h3>#7 &#8211; Fleur</h3>
<p><img src="http://img146.imageshack.us/img146/3076/fleurxw9.gif" alt="Fleur screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;Gorgeous. Finally, the only one I like the whole page of. Very minimal.&quot;<br />
<strong>Links:</strong> <a href="http://www.grabatheme.com/grab/fleur/">Theme page</a>. <a href="http://www.grabatheme.com/fleur/index.html">Demo page</a>.</p>
<h3>#8 &#8211; Kukufall</h3>
<p><img src="http://img400.imageshack.us/img400/6578/kukufalldw2.gif" alt="Kukufall screenshot." /><br />
<strong>Thoughts:</strong> &quot;Interesting illustration. Really grabs your attention.&quot;<br />
<strong>Links:</strong> <a href="http://grabatheme.com/kukufall/index.html">Demo page</a>. <a href="http://kukuthebird.blogspot.com/">Designer</a>. </p>
<h3>#9 &#8211; Lover Paradise</h3>
<p><img src="http://img408.imageshack.us/img408/1300/loverparadiserh0.gif" alt="Lover paradise screenshot." /><br />
<strong>Thoughts:</strong> &quot; Color! Wow. Lots of it. Very neat looking.&quot;<br />
<strong>Links:</strong> <a href="http://wp-themes.erikgyepes.com/2007/07/27/lover-paradise/">Theme page</a>. <a href="http://wp-themes.erikgyepes.com/download-manager.php?id=25">Demo page</a>.</p>
<h3>#10 &#8211; Orange Kitten</h3>
<p><img src="http://img166.imageshack.us/img166/3412/orangekittentb4.gif" alt="Orange kitten screenshot." /><br />
<strong>Thoughts:</strong> &quot;Awww. Again, we know about the animals, but now we also have the protective reaction and it looks like the darn kitten is about to fall off.&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=775">Theme page</a>. <a href="http://www.wpthemesfree.com/test.php?theme_id=775">Demo page</a>. <a href="http://www.ongate.eu/">Designer.</a></p>
<h3>#11 &#8211; My Gerbil</h3>
<p><img src="http://img442.imageshack.us/img442/2373/mygerbilrl1.gif" alt="My gerbil screenshot." /><br />
<strong>Thoughts:</strong> &quot;Eep! What a way to freak out your viewers and get their attention. I literally leaned back when this loaded up. Just the thing&#8230; a rodent with beady eyes staring at you!&quot;<br />
<strong>Links:</strong> <a href="http://www.wpthemesfree.com/view.php?theme_id=845">Theme page</a>. <a href="http://www.wpthemesfree.com/test.php?theme_id=845">Demo page</a>. <a href="http://www.ongate.eu/">Designer</a>.</p>
<h3>#12 &#8211; She&#8217;s Got Style</h3>
<p><img src="http://img443.imageshack.us/img443/3928/shesgotstyleju8.gif" alt="She's got style screenshot." /><br />
<strong>Thoughts:</strong> &quot;Ooooh&#8230; I love that drawing! I wish I could illustrate like that.. I need to find that artist.&quot;<br />
<strong>Links:</strong> <a href="http://www.grabatheme.com/grab/shes-got-style/">Theme page</a>. <a href="http://www.grabatheme.com/shes-got-style/index.html">Demo page</a>. <a href="http://blogskins.com/me/sweet-melancholy">Designer</a>.<br />
(Note: There is a separate artist of the graphic. She has a deviantART page here <a href="http://vikifloki.deviantart.com/">http://vikifloki.deviantart.com/</a> and has a great looking gallery of other illustrations.)</p>
<h3>#13 &#8211; Summer Holidays</h3>
<p><img src="http://img407.imageshack.us/img407/9941/summerholidaysqw7.gif" alt="Summer holidays screenshot." /></p>
<p><strong>Thoughts:</strong> &quot;When all else fails&#8230; just put the site on the wrong side and scribble all over it.&quot;<br />
<strong>Links:</strong> <a href="http://www.grabatheme.com/grab/summer-holidays/">Theme page</a>. <a href="http://grabatheme.com/summerholidays/index.html">Demo page</a>. <a href="http://www.blogskins.com/me/paperlove">Designer</a>.</p>
<p>That&#8217;s all folks! Hope you were inspired, and at least not too creeped out by the rodent <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_biggrin.gif' alt=':D' class='wp-smiley' /> </p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/09/27/13-eyecatching-wordpress-header-designs/feed/</wfw:commentRss>
		<slash:comments>74</slash:comments>
		</item>
		<item>
		<title>Pink For October Time &#8211; You Ready?</title>
		<link>http://blog.websitestyle.com/index.php/2007/09/25/pink-for-october-time-you-ready/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/09/25/pink-for-october-time-you-ready/#comments</comments>
		<pubDate>Tue, 25 Sep 2007 07:37:06 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Color]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/09/25/pink-for-october-time-you-ready/</guid>
		<description><![CDATA[It&#8217;s almost time to do the yearly blog change to pink again. In case you&#8217;ve forgotten why we mark a breast cancer awareness month with this tradition now, PinkForOctober.org will fill you in. If you&#8217;d like to join in and don&#8217;t have a theme handy, there are a couple I happened upon that were really [...]]]></description>
			<content:encoded><![CDATA[<p>It&#8217;s almost time to do the yearly blog change to pink again. In case you&#8217;ve forgotten why we mark a breast cancer awareness month with this tradition now, <a href="http://pinkforoctober.org/">PinkForOctober.org</a> will fill you in. </p>
<p>If you&#8217;d like to join in and don&#8217;t have a theme handy, there are a couple I happened upon that were really great for it.</p>
<p>There&#8217;s a blog called Scribblescratch.com that&#8217;s got quite a few unique themes in various &#8216;girly&#8217; designs.</p>
<p>Here are two on the site specifically for the October pink switch:</p>
<p><img src="http://img520.imageshack.us/img520/349/availabletheme12pd3.jpg" alt="Pink For October 1" /></p>
<p><img src="http://img72.imageshack.us/img72/3696/availabletheme11ep0.jpg" alt="Pink for October 2." /></p>
<p>You can <a href="http://scribblescratch.com/themes">download them both here.</a> There&#8217;s actually quite a few others on that page that might serve well for the pink theme.</p>
<p>I&#8217;m not entirely understanding why all these themes are flagged as &#8216;based on the Dusk theme by Beccary&#8217; &#8230; they all seem unique enough to me in comparison to stand on their own, but ah well, to each his own.</p>
<p>I&#8217;m really liking the pink plaid, I might even borrow that one this year. Who knows.</p>
<p>One from last year that I recall was <a href="http://5thirtyone.com/archives/684">this one</a> from 5thirtyone.com.</p>
<p><img src="http://img182.imageshack.us/img182/2091/pinkoctoberlx3.gif" alt="Pink for october 2006." /></p>
<p>Not sure if that theme works with new versions of WP, but you might check it out.</p>
<p>Another from last year was this one, which actually has 2 looks to it. A business&#8217;ish look and a fun look. I much prefer the fun look:</p>
<p><img src="http://img215.imageshack.us/img215/948/1383780697c3d26a4a3cnr5.jpg" alt="Pink for october 2006." /></p>
<p>You can check out<a href="http://wp.nataliejost.com/pink/index.php?wptheme=Pink+For+October+-+Stripes"> a live demo here</a>, or <a href="http://www.standardsforlife.com/pink-for-october-2007">see the downloads</a>.</p>
<p>If you none of those fit what you are looking for, head over to <a href="http://themes.wordpress.net/category/main-color/pink/">the Pink Section of the Theme Viewer</a> and browse around <img src='http://blog.websitestyle.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Have fun!</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/09/25/pink-for-october-time-you-ready/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>The Best PNG Fix?</title>
		<link>http://blog.websitestyle.com/index.php/2007/09/19/the-best-png-fix/</link>
		<comments>http://blog.websitestyle.com/index.php/2007/09/19/the-best-png-fix/#comments</comments>
		<pubDate>Wed, 19 Sep 2007 13:46:39 +0000</pubDate>
		<dc:creator>Nicole</dc:creator>
				<category><![CDATA[Code]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[Scripting]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://blog.websitestyle.com/index.php/2007/09/19/the-best-png-fix/</guid>
		<description><![CDATA[I adore using PNG graphics in my designs, but I hate the way IE6 handles them. We know all about needing a PNG fix and using one, but recently I encountered my first major problem using one. While working on my new primary site design for Website Style, I ran into a major hitch. Most [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://img239.imageshack.us/img239/6963/pngtransparencydemonstrww3.png" alt="A png example." class="right" width="300px" height="220px" />I adore using PNG graphics in my designs, but I hate the way IE6 handles them. We know all about needing a PNG fix and using one, but recently I encountered my first major problem using one.</p>
<p>While working on my new primary site design for Website Style, I ran into a major hitch. Most of the PNG fixes just simply don&#8217;t work for the kind of site I&#8217;m making. Each one had a different problem.</p>
<p>Some used the proprietary CSS &#8216;expressions&#8217; which we know are not good because <a href="http://developer.yahoo.com/performance/rules.html#css_expressions">they massively can slow down a site</a> when they fire off thousands of times in a session.</p>
<p>Others wanted all my png&#8217;s in one directory. It&#8217;s simply not possible with my setup. So my choice there would be to completely reorganize all my CSS and HTML to put the files in one directory? No thanks.</p>
<p>Some only handle the images found in the img element, not the CSS background images.</p>
<p>Some only handle the CSS background images.</p>
<p>I&#8217;ve found some that work in the past, but what I&#8217;m looking for is something that:</p>
<ol>
<li>Must handle PNG&#8217;s in multiple directories. (Major priority)</li>
<li>Must apply the fix to .png&#8217;s in the img element.</li>
<li>Must not choke up and die when used with WordPress</li>
<li>Ideally can handle background images as well, but if I have to I don&#8217;t mind working without the background image.</li>
</ol>
<p>That final twitchy behavior of the alternatives I found seemed to somehow or other not want to work with WordPress (which made no sense at all to me because its all PHP anyway so why should it matter, but apparently it did).</p>
<p>If anyone knows of any suggestions, please let me know!</p>
<p>~Nicole</p>
]]></content:encoded>
			<wfw:commentRss>http://blog.websitestyle.com/index.php/2007/09/19/the-best-png-fix/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

