<?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>random nothingness &#187; Wordpress</title>
	<atom:link href="http://greenraingraphics.com/z/category/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://greenraingraphics.com/z</link>
	<description>making sense of the madness</description>
	<lastBuildDate>Mon, 26 Jul 2010 00:54:52 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Getting the post navigation to work in Wordpress</title>
		<link>http://greenraingraphics.com/z/wordpress/getting-the-post-navigation-to-work-in-wordpress/</link>
		<comments>http://greenraingraphics.com/z/wordpress/getting-the-post-navigation-to-work-in-wordpress/#comments</comments>
		<pubDate>Fri, 04 Jun 2010 15:53:31 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://greenraingraphics.com/z/?p=193</guid>
		<description><![CDATA[This is the way I used the code for AREA203&#8217;s website, and it worked well. 

&#60;?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=4&#038;paged=$paged&#038;showposts=3");
if (have_posts()) : while (have_posts()) : the_post();
the_content();
?>
&#60;?php endwhile; ?>
&#60;div id="postNav">
&#60;span class="previousNav">&#60;?php previous_posts_link(); ?>&#60;/span>
&#60;span class="moreNav">&#60;?php next_posts_link(); ?>&#60;/span>
&#60;/div>
&#60;?php else : ?>
&#60;?php endif; ?>

]]></description>
			<content:encoded><![CDATA[<p>This is the way I used the code for<a href="http://www.area203.com"> AREA203&#8217;s website</a>, and it worked well. </p>
<pre name="code" class="php">
&lt;?php
$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;
query_posts("cat=4&#038;paged=$paged&#038;showposts=3");
if (have_posts()) : while (have_posts()) : the_post();
the_content();
?>
&lt;?php endwhile; ?>
&lt;div id="postNav">
&lt;span class="previousNav">&lt;?php previous_posts_link(); ?>&lt;/span>
&lt;span class="moreNav">&lt;?php next_posts_link(); ?>&lt;/span>
&lt;/div>
&lt;?php else : ?>
&lt;?php endif; ?>
</pre>
]]></content:encoded>
			<wfw:commentRss>http://greenraingraphics.com/z/wordpress/getting-the-post-navigation-to-work-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>A quick look at WP-Print, a WordPress plugin for printer friendly printing</title>
		<link>http://greenraingraphics.com/z/scenarios-real-world-tasks/a-quick-look-at-wp-print-a-wordpress-plugin-for-printer-friendly-printing/</link>
		<comments>http://greenraingraphics.com/z/scenarios-real-world-tasks/a-quick-look-at-wp-print-a-wordpress-plugin-for-printer-friendly-printing/#comments</comments>
		<pubDate>Tue, 19 Jan 2010 13:54:46 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Scenarios]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://greenraingraphics.com/z/?p=84</guid>
		<description><![CDATA[I struggled to find a solution to creating a printer friendly version of a paginated page (or post). I successfully created a dynamic page called &#8220;printer friendly&#8221; and used a series of variables to dynamically pull from an existing post or page. That part worked. The problem was getting the full text of the article [...]]]></description>
			<content:encoded><![CDATA[<p>I struggled to find a solution to creating a printer friendly version of a paginated page (or post). I successfully created a dynamic page called &#8220;printer friendly&#8221; and used a series of variables to dynamically pull from an existing post or page. That part worked. The problem was getting the full text of the article to pull in when the <code></p>
]]></content:encoded>
			<wfw:commentRss>http://greenraingraphics.com/z/scenarios-real-world-tasks/a-quick-look-at-wp-print-a-wordpress-plugin-for-printer-friendly-printing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Snippet: A quick and easy second or side loop for Wordpress</title>
		<link>http://greenraingraphics.com/z/wordpress/snippet-a-quick-and-easy-second-or-side-loop-for-wordpress/</link>
		<comments>http://greenraingraphics.com/z/wordpress/snippet-a-quick-and-easy-second-or-side-loop-for-wordpress/#comments</comments>
		<pubDate>Fri, 04 Dec 2009 19:29:07 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://greenraingraphics.com/z/?p=77</guid>
		<description><![CDATA[Resources, related or just simply helpful:
http://codex.wordpress.org/Template_Tags/query_posts
http://codex.wordpress.org/Template_Tags/get_posts
	
					]]></description>
			<content:encoded><![CDATA[<p>Resources, related or just simply helpful:</p>
<p>http://codex.wordpress.org/Template_Tags/query_posts</p>
<p>http://codex.wordpress.org/Template_Tags/get_posts</p>
<pre name="code" class="php">	<?php
			$args=array(
				'showposts'=>1, // Number of related posts that will be shown.
				'category_name'=>'monthlytips',
				'orderby'=>'date',
				'order'=>'DESC'
			);

			$newsArticles = new wp_query($args);
			if( $newsArticles->have_posts() ) {
				while ($newsArticles->have_posts()) {
					$newsArticles->the_post(); ?>
					<a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a>
                    <?php the_content(); ?>
					<?php }
			} ?>
         </pre>
]]></content:encoded>
			<wfw:commentRss>http://greenraingraphics.com/z/wordpress/snippet-a-quick-and-easy-second-or-side-loop-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Use custom fields in Wordpress with posts</title>
		<link>http://greenraingraphics.com/z/wordpress/use-custom-fields-in-wordpress-with-posts/</link>
		<comments>http://greenraingraphics.com/z/wordpress/use-custom-fields-in-wordpress-with-posts/#comments</comments>
		<pubDate>Fri, 06 Nov 2009 15:18:15 +0000</pubDate>
		<dc:creator>me</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[snippets]]></category>

		<guid isPermaLink="false">http://greenraingraphics.com/z/?p=68</guid>
		<description><![CDATA[                 &#60;?php // if there are custom fields, echo them here in the looped content and build our related leftbox
                    [...]]]></description>
			<content:encoded><![CDATA[<p><code>                 &lt;?php // if there are custom fields, echo them here in the looped content and build our related leftbox<br />
                        if($img !== '') { ?&gt;<br />
                        &lt;div class=&quot;entry_customFields&quot;&gt;<br />
                        	&lt;p&gt;<br />
                                &lt;img src=&quot;&lt;?php echo $img2; ?&gt;&quot;<br />
                                class=&quot;&lt;?php if($img_class !== '') { echo 'portfolio_img_thumb'; } else { echo ''; } ?&gt;&quot;<br />
                                alt=&quot;&lt;?php if($img_alt2 !== '') { echo $img_alt2; } else { echo ''; } ?&gt;&quot;<br />
                                /&gt;<br />
                        	&lt;/p&gt;<br />
                        &lt;/div&gt;<br />
                        &lt;div class=&quot;entry_customFields&quot;&gt;<br />
                            &lt;p&gt;<br />
                                &lt;a href=&quot;&lt;?php echo $img3; ?&gt;&quot; target=&quot;_blank&quot;&gt;&lt;img src=&quot;&lt;?php echo $img3; ?&gt;&quot;<br />
                                class=&quot;&lt;?php if($img_class !== '') { echo 'portfolio_img_thumb'; } else { echo '';  } ?&gt;&quot;<br />
                                alt=&quot;&lt;?php if($img_alt3 !== '') { echo $img_alt3; } else { echo ''; } ?&gt;&quot;<br />
                                /&gt;&lt;/a&gt;<br />
                            &lt;/p&gt;<br />
                        &lt;/div&gt;<br />
                        &lt;?php } // end if statement</p>
<p>                        // if there's not a custom field<br />
                        else { echo ''; } ?&gt;</code></p>
]]></content:encoded>
			<wfw:commentRss>http://greenraingraphics.com/z/wordpress/use-custom-fields-in-wordpress-with-posts/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

