<?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>Itsonlybarney&#187; WordPress</title>
	<atom:link href="http://itsonlybarney.com/wordpress/feed/" rel="self" type="application/rss+xml" />
	<link>http://itsonlybarney.com</link>
	<description>A journey of learning WordPress, Fitness &#38; Photography</description>
	<lastBuildDate>Sat, 04 Feb 2012 00:39:06 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Adding Social Twitter</title>
		<link>http://itsonlybarney.com/adding-social-twitter/</link>
		<comments>http://itsonlybarney.com/adding-social-twitter/#comments</comments>
		<pubDate>Sun, 29 Jan 2012 22:00:33 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[WordPress]]></category>
		<category><![CDATA[genesis]]></category>

		<guid isPermaLink="false">http://itsonlybarney.com/?p=528</guid>
		<description><![CDATA[I haven&#8217;t implemented this here on the blog, however I am definitely considering doing so.  Do you want to make sharing of your blog articles on Twitter easier than ever? The easiest option is to add a Twitter button on each post.  The following code does just that, and the button will only appear on [...]]]></description>
			<content:encoded><![CDATA[<p>I haven&#8217;t implemented this here on the blog, however I am definitely considering doing so.  Do you want to make sharing of your blog articles on Twitter easier than ever?</p>
<p>The easiest option is to add a Twitter button on each post.  The following code does just that, and the button will only appear on a single post, and not blog, archive, or search pages.</p>
<div id="gist-1688145" class="gist">

        <div class="gist-file">
          <div class="gist-data gist-syntax">
              <div class="highlight"><pre><div class='line' id='LC1'><span class="x">add_action( &#39;the_content&#39; , &#39;itsb_tweet_button&#39; );</span></div><div class='line' id='LC2'><span class="x">function itsb_tweet_button( $content ) {</span></div><div class='line' id='LC3'><span class="x">	if ( is_single() )</span></div><div class='line' id='LC4'><span class="x">		return &#39;&lt;div class=&quot;twitter-button&quot;&gt;&lt;a href=&quot;http://twitter.com/share&quot; class=&quot;twitter-share-button&quot; data-url=&quot;&#39;. get_permalink() .&#39;&quot; data-count=&quot;vertical&quot; data-via=&quot;oursexsecrets&quot;&gt;Tweet&lt;/a&gt;&lt;script type=&quot;text/javascript&quot; src=&quot;http://platform.twitter.com/widgets.js&quot;&gt;&lt;/script&gt;&lt;/div&gt;&#39; . $content;</span></div><div class='line' id='LC5'><span class="x">	return $content;</span></div><div class='line' id='LC6'><span class="x">}</span></div></pre></div>
          </div>

          <div class="gist-meta">
            <a href="https://gist.github.com/raw/1688145/22e4cf8e0781e955e203432bda28b11810e55398/functions.php" style="float:right;">view raw</a>
            <a href="https://gist.github.com/1688145#file_functions.php" style="float:right;margin-right:10px;color:#666">functions.php</a>
            <a href="https://gist.github.com/1688145">This Gist</a> brought to you by <a href="http://github.com">GitHub</a>.
          </div>
        </div>
</div>

<p>The code adds a div before the main content that you can style as you want.  You can float it to the left or the right, and position as you want.</p>
<p>You can also customise the output of the function, and move the twitter button to the end of the content.  Or add other social media buttons as well, tweaking the output and position the way you like it.</p>
]]></content:encoded>
			<wfw:commentRss>http://itsonlybarney.com/adding-social-twitter/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Using LessCSS</title>
		<link>http://itsonlybarney.com/using-lesscss/</link>
		<comments>http://itsonlybarney.com/using-lesscss/#comments</comments>
		<pubDate>Thu, 26 Jan 2012 22:00:08 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://itsonlybarney.com/?p=521</guid>
		<description><![CDATA[I&#8217;ve been experimenting with a number of CSS methods to try and make WordPress theme development more friendly for both myself, and for others who may want to tweak the theme when I have released it into the wild internet. One particlar method I have been using is LessCSS. I use the following code to [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been experimenting with a number of CSS methods to try and make WordPress theme development more friendly for both myself, and for others who may want to tweak the theme when I have released it into the wild internet.</p>
<p>One particlar method I have been using is <a title="LessCSS" href="http://lesscss.org/">LessCSS</a>.</p>
<p>I use the following code to add the less.js file, as well as linking to a .less file.</p>
<div id="gist-1674738" class="gist">

        <div class="gist-file">
          <div class="gist-data gist-syntax">
              <div class="highlight"><pre><div class='line' id='LC1'><span class="x">function itsb_lesscss() {</span></div><div class='line' id='LC2'><span class="x">?&gt;&lt;link rel=&quot;stylesheet/less&quot; type=&quot;text/css&quot; href=&quot;</span><span class="cp">&lt;?php</span> <span class="k">echo</span> <span class="nx">get_template_directory_uri</span><span class="p">();</span> <span class="cp">?&gt;</span><span class="x">/style.less&quot;&gt;</span></div><div class='line' id='LC3'><span class="x">&lt;script src=&quot;</span><span class="cp">&lt;?php</span> <span class="k">echo</span> <span class="nx">get_template_directory_uri</span><span class="p">();</span> <span class="cp">?&gt;</span><span class="x">/js/less.js&quot; type=&quot;text/javascript&quot;&gt;&lt;/script&gt;</span><span class="cp">&lt;?php</span> <span class="c1">// Download the less.js file from http://lesscss.org/</span></div><div class='line' id='LC4'><span class="p">}</span></div><div class='line' id='LC5'><span class="nx">add_action</span><span class="p">(</span> <span class="s1">&#39;wp_head&#39;</span> <span class="p">,</span> <span class="s1">&#39;itsb_lesscss&#39;</span> <span class="p">);</span></div></pre></div>
          </div>

          <div class="gist-meta">
            <a href="https://gist.github.com/raw/1674738/28d4a601cfdc0dd2a19259b643fc0135647b010e/functions.php" style="float:right;">view raw</a>
            <a href="https://gist.github.com/1674738#file_functions.php" style="float:right;margin-right:10px;color:#666">functions.php</a>
            <a href="https://gist.github.com/1674738">This Gist</a> brought to you by <a href="http://github.com">GitHub</a>.
          </div>
        </div>
</div>

<p>You can adjust the locations of the files to suit your file structure for your theme, but this will add the necessary code.</p>
]]></content:encoded>
			<wfw:commentRss>http://itsonlybarney.com/using-lesscss/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Private Git Repository?</title>
		<link>http://itsonlybarney.com/private-git-repository/</link>
		<comments>http://itsonlybarney.com/private-git-repository/#comments</comments>
		<pubDate>Mon, 09 Jan 2012 09:15:57 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[genesis]]></category>
		<category><![CDATA[github]]></category>

		<guid isPermaLink="false">http://itsonlybarney.com/?p=482</guid>
		<description><![CDATA[Again I&#8217;m not happy with my blog theme design, and thinking about a design update for the blog, hopefully to something that reflects me. But as I&#8217;m designing the theme, I want to keep it private until I have a 95% ready issue.  So how would you go about working it?  I&#8217;m thinking of using [...]]]></description>
			<content:encoded><![CDATA[<p>Again I&#8217;m <a title="Executing Website Design" href="http://itsonlybarney.com/executing-website-design/">not happy</a> with my blog theme design, and thinking about a design update for the blog, hopefully to something that reflects me.</p>
<p>But as I&#8217;m designing the theme, I want to keep it private until I have a 95% ready issue.  So how would you go about working it?  I&#8217;m thinking of using <a title="I'm on Github" href="http://github.com/itsonlybarney">Github</a> as I have a number of other themes over there, but at the same time, I would rather a private repository to store the files until I am ready to release it publically.</p>
<p>So who would you use?  Github and pay to have a private repo?  Or an alternative provider that gives private repos for free accounts?  I&#8217;m thinking the latter because I&#8217;m not really a fully-fledged designer to warrant paying, but going with a hosted repo with a reputation seems like a good thing to go with.</p>
<p><em>What are your thoughts?</em></p>
]]></content:encoded>
			<wfw:commentRss>http://itsonlybarney.com/private-git-repository/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Moved to Git</title>
		<link>http://itsonlybarney.com/moved-to-git/</link>
		<comments>http://itsonlybarney.com/moved-to-git/#comments</comments>
		<pubDate>Tue, 20 Dec 2011 03:15:24 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Coding]]></category>
		<category><![CDATA[github]]></category>

		<guid isPermaLink="false">http://itsonlybarney.com/?p=462</guid>
		<description><![CDATA[Since I&#8217;m looking at some theme design these holidays, I&#8217;ve decided to move my code to a hosted repository such as Git for version control and storage. I have also updated the Minimalism Theme I created, and moved that to Github, where you can easily download the latest theme code. If you would like to [...]]]></description>
			<content:encoded><![CDATA[<p>Since I&#8217;m looking at some theme design these holidays, I&#8217;ve decided to move my code to a hosted repository such as Git for version control and storage.  </p>
<p>I have also updated the <a href="http://itsonlybarney.com/minimalism-theme/" title="Minimalism Theme">Minimalism Theme</a> I created, and moved that to <a href="http://github.com/" title="Github">Github</a>, where you can easily <a href="https://github.com/itsonlybarney/minimalism-on-genesis/zipball/master" title="Minimalism on Genesis">download</a> the latest theme code.</p>
<p>If you would like to share your design processes, as well as workflows with Github, I&#8217;d love to hear from you.</p>
]]></content:encoded>
			<wfw:commentRss>http://itsonlybarney.com/moved-to-git/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Minimalism Theme</title>
		<link>http://itsonlybarney.com/minimalism-theme/</link>
		<comments>http://itsonlybarney.com/minimalism-theme/#comments</comments>
		<pubDate>Thu, 01 Dec 2011 01:00:22 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Themes]]></category>
		<category><![CDATA[genesis]]></category>

		<guid isPermaLink="false">http://itsonlybarney.com/?p=106</guid>
		<description><![CDATA[I have never really written a theme release page before, so please go easy on my for now. I am a WordPress designer that isn&#8217;t really ever happy with any of the themes that I create for my blog here. I always find that the theme is missing something, but I can never quite put [...]]]></description>
			<content:encoded><![CDATA[<p>I have never really written a theme release page before, so please go easy on my for now.</p>
<p>I am a WordPress designer that isn&#8217;t really ever happy with any of the themes that I create for my blog here. I always find that the theme is missing something, but I can never quite put my finger on it to rectify the situation. For now, I have settled on a theme that I designed called <em>Minimalism</em>.</p>
<p><em>Minimalism</em> is built as a child theme using the <a title="Genesis" href="http://itsonlybarney.com/go/genesis/">Genesis Framework</a>.</p>
<p>I have tried to minimise the use of images, and reduced the CSS file down to as small as required to ensure a quick, and easy download. I may consider adding Post Format images for a Tumblr style blog for those that are interested, but that won&#8217;t be until a future release.</p>
<p><em><strong>Download:</strong><a href="https://github.com/itsonlybarney/minimalism-on-genesis/zipball/master">Minimalism Theme</a> (Github Download)</em></p>
]]></content:encoded>
			<wfw:commentRss>http://itsonlybarney.com/minimalism-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

