<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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/" xmlns:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0"><channel><title>Austin Passy</title> <link>http://austinpassy.com</link> <description>Los Angeles WordPress developer</description> <lastBuildDate>Wed, 25 Jan 2012 03:36:15 +0000</lastBuildDate> <language>en</language> <sy:updatePeriod>hourly</sy:updatePeriod> <sy:updateFrequency>1</sy:updateFrequency> <generator>http://wordpress.org/?v=3.3.1</generator> <atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" type="application/rss+xml" href="http://feeds.feedburner.com/AustinPassy" /><feedburner:info uri="austinpassy" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com/" /><feedburner:emailServiceId>AustinPassy</feedburner:emailServiceId><feedburner:feedburnerHostname>http://feedburner.google.com</feedburner:feedburnerHostname><item><title>Updated: Add Pinterest pin to Jetpack with jQuery</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/0KFxvl7dGf8/</link> <comments>http://austinpassy.com/tutorials/add-pinterest-pin-to-jetpack-with-jquery/#comments</comments> <pubDate>Tue, 24 Jan 2012 08:24:10 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[Tutorials]]></category> <category><![CDATA[Jetpack]]></category> <category><![CDATA[jQuery]]></category> <category><![CDATA[Pinterest]]></category> <category><![CDATA[Sharedaddy]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2444</guid> <description><![CDATA[Tonight I tried out a few things and came up with a quick fix with jQuery. Using this code I was able to load the Pinterest pin button next to all the other share buttons built into Jetpacks sharedaddy module. <a href="http://austinpassy.com/tutorials/add-pinterest-pin-to-jetpack-with-jquery/"><span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p class="note">See my update <a href="#update">below</a></p><p>My girlfriend is all about <a href="http://pinterest.com/jeana_arter">Pinterest</a>, and last week I added a link and a favicon in <a href="http://jetpack.me">Jetpacks</a> sharedaddy module. Well it didn&#8217;t work so well, and didn&#8217;t stand up to the Twitter and Facebook buttons she has.</p><p>Another issue was Jetpack doesn&#8217;t have a shortcode/regex to get the featured image and any image for that matter, so the Pinterest button never quite worked.</p><p>Tonight I tried out a few things and came up with a quick fix with jQuery. Using this code I was able to load the pin button next to all the others, so enjoy.</p><h4>Hard coded or in a <code>js</code> file</h4><pre>
jQuery(document).ready(
	function($) {

		var sharedaddy = $('.sharing');
		if ( sharedaddy.length > 0 ) {
			$('li.share-end').before('&lt;li class="share-regular">&lt;a href="http://pinterest.com/pin/create/button/" class="pin-it-button" count-layout="horizontal">Pin It&lt;script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js">&lt;/script>&lt;/li>');
		}

	}
);
</pre><p>That&#8217;s it!</p><h4>Function in WordPress (theme or core <a href="http://austinpassy.com/asides/las-vegas-wordcamp-presentation/" title="Las Vegas WordCamp presentation">plugin</a>)</h4><pre>
	add_action( 'wp_enqueue_scripts', 'frosty_enqueue_scripts' );
}

function frosty_enqueue_scripts() {
	wp_register_script( 'pinterest', trailingslashit( THEME_URI ) . 'js/pinterest.js', array( 'jquery' ), null, true );
	wp_enqueue_script( 'pinterest' );
}
</pre><p><a href="http://pinterest.com/about/goodies/">Get your Pinterest goodies here</a>.</p><div id="update"><h2><ins datetime="2012-01-25T02:52:13+00:00">Update</ins></h2><h2></h2></div><p>After some real play time with the method above I found that Pinterest didn&#8217;t grab the image from the site, so I updated the some functions and changed how I went about outputting the pin button.</p><p>First off I&#8217;m no longer adding Pinterest via jQuery, but outputting the script and HTML into a hook in a theme and then moving it to the location I choose.</p><p><strong>Example:</strong></p><pre>
function jeana_pinterest_button() {
    global $post;

    $url = urlencode( get_permalink( $post->ID ) );

    if ( function_exists( 'get_the_image' ) ) {
	$image = get_the_image( array( 'size' => 'large', 'link_to_post' => false, 'image_scan' => true, 'format' => 'array', 'echo' => false ) );
	$image = urlencode( $image['src'] );
    } else {
        $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'large' );
	$image = urlencode( $image[0] );
    }

    $html = '&lt;div id="pinterest-wrapper" style="display:none">&lt;a href="http://pinterest.com/pin/create/button/?url=' . $url . '&#038;media=' . $image . '" class="pin-it-button" count-layout="horizontal">Pin It&lt;/a>&lt;script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js">&lt;/script>&lt;/div>';
    print $html;
}
</pre><p>I am then hooking the above function into a hook built into the theme (I am using <a href="http://themehybrid.com/hybrid-core">Hybrid Core</a>) I am using, you may want to use <code>wp_footer</code> or a hook that you are more familiar with.</p><pre>
add_filter( "{$prefix}_after_loop", 'jeana_pinterest_button' );
</pre><p>The new Pinterest button should be working now, thought I&#8217;d still like to see it next to all the other share buttons, so I&#8217;ve hidden the <code>pinterest-wrapper</code> and will use jQuery to move and show it:</p><pre>
/* Pinterest */
var sharedaddy = $('.sharing');
if ( sharedaddy.length > 0 ) {
	var pinterest = $('div#pinterest-wrapper');
	if ( pinterest.length > 0 ) {
		$('li.share-end').before('&lt;li class="share-pinterest share-regular">&lt;/li>');
		$(pinterest).delay(1000).appendTo('li.share-pinterest').show();
	}
}
</pre><img src="http://feeds.feedburner.com/~r/AustinPassy/~4/0KFxvl7dGf8" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/tutorials/add-pinterest-pin-to-jetpack-with-jquery/feed/</wfw:commentRss> <slash:comments>4</slash:comments> <feedburner:origLink>http://austinpassy.com/tutorials/add-pinterest-pin-to-jetpack-with-jquery/</feedburner:origLink></item> <item><title>Custom Login Pro has arrived</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/liBazO2nKHg/</link> <comments>http://austinpassy.com/asides/custom-login-pro-has-arrived/#comments</comments> <pubDate>Tue, 24 Jan 2012 02:35:24 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[asides]]></category> <category><![CDATA[Custom Login]]></category> <category><![CDATA[Custom Login Pro]]></category> <category><![CDATA[Premium]]></category> <category><![CDATA[WordPress]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2440</guid> <description><![CDATA[After three weeks of coding I&#8217;ve released the very first PRO version of my free WordPress plugins. You can find a copy of Custom Login Pro over here. Prices start at just $10 for a single site license. If you&#8217;ve &#8230; <a href="http://austinpassy.com/asides/custom-login-pro-has-arrived/"><span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>After three weeks of coding I&#8217;ve released the very first PRO version of my free WordPress plugins. You can find a copy of Custom Login Pro <a href="http://thefrosty.com/">over here</a>. Prices start at just $10 for a single site license.</p><p>If you&#8217;ve used my <a href="http://austinpassy.com/wordpress-plugins/custom-login/" title="Custom Login">custom login plugin</a> in the past, you&#8217;ll really like this one!</p> <img src="http://feeds.feedburner.com/~r/AustinPassy/~4/liBazO2nKHg" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/asides/custom-login-pro-has-arrived/feed/</wfw:commentRss> <slash:comments>2</slash:comments> <feedburner:origLink>http://austinpassy.com/asides/custom-login-pro-has-arrived/</feedburner:origLink></item> <item><title>The Countdown to Midnight in Vegas</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/b7dfOxpH0kc/</link> <comments>http://austinpassy.com/general/the-countdown-to-midnight-in-vegas/#comments</comments> <pubDate>Tue, 03 Jan 2012 00:38:11 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[Las Vegas]]></category> <category><![CDATA[New Years]]></category> <category><![CDATA[YouTube]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2434</guid> <description><![CDATA[Like my recent trip to Vegas, I compiled about 400 photos into a thirty second video clip around Midnight at the Aria Hotel &#038; Casino in Vegas.]]></description> <content:encoded><![CDATA[<p>Like my recent trip to Vegas, I compiled about 400 photos into a thirty second video clip around Midnight at the Aria Hotel &#038; Casino in Vegas.</p><a href='http://austinpassy.com/general/the-countdown-to-midnight-in-vegas/attachment/img_9805/' title='Crystal @ Aria'><img width="250" height="166" src="http://cdn.austinpassy.com/wp-content/uploads/2012/01/IMG_9805-250x166.jpg" class="attachment-medium" alt="Crystal @ Aria" title="Crystal @ Aria" /></a> <a href='http://austinpassy.com/general/the-countdown-to-midnight-in-vegas/attachment/img_9939/' title='Jeana&#039;s  Perrier Jouët'><img width="250" height="375" src="http://cdn.austinpassy.com/wp-content/uploads/2012/01/IMG_9939-250x375.jpg" class="attachment-medium" alt="Jeana&#039;s Perrier Jouët" title="Jeana&#039;s  Perrier Jouët" /></a> <a href='http://austinpassy.com/general/the-countdown-to-midnight-in-vegas/attachment/img_0417-2/' title='Austin&#039;s Dom Perignon'><img width="250" height="166" src="http://cdn.austinpassy.com/wp-content/uploads/2012/01/IMG_0417-250x166.jpg" class="attachment-medium" alt="Austin&#039;s Dom Perignon" title="Austin&#039;s Dom Perignon" /></a><img src="http://feeds.feedburner.com/~r/AustinPassy/~4/b7dfOxpH0kc" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/general/the-countdown-to-midnight-in-vegas/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://austinpassy.com/general/the-countdown-to-midnight-in-vegas/</feedburner:origLink></item> <item><title>The new WordPress dot org headers</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/o4y3AZOiCOw/</link> <comments>http://austinpassy.com/general/the-new-wordpress-dot-org-headers/#comments</comments> <pubDate>Thu, 22 Dec 2011 18:00:04 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[@anywhere]]></category> <category><![CDATA[Announcement Bar]]></category> <category><![CDATA[Comment Validation]]></category> <category><![CDATA[Custom Login]]></category> <category><![CDATA[Eventbrite]]></category> <category><![CDATA[Hide and Catch Email]]></category> <category><![CDATA[Plugins]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2429</guid> <description><![CDATA[Yesterday morning I saw the announcement about the new plugin headers. I immediately created and uploaded an image for my most popular plugin Custom Login. Late last night I spent some time and created header images for the rest of &#8230; <a href="http://austinpassy.com/general/the-new-wordpress-dot-org-headers/"><span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>Yesterday morning I saw <a href="http://wpdevel.wordpress.com/2011/12/21/been-giving-a-lot-of-thought-to-how/">the announcement</a> about the new plugin headers. I immediately created and uploaded an image for my most popular plugin <a href="http://austinpassy.com/wordpress-plugins/custom-login/" title="Custom Login"><em>Custom Login</em></a>.</p><div id="attachment_2430" class="wp-caption alignnone" style="width: 782px"><img src="http://cdn.austinpassy.com/wp-content/uploads/2011/12/banner-772x250.png" alt="Comment Validation Reloaded Header Image" title="Comment Validation Reloaded Header Image" width="772" height="250" class="size-full wp-image-2430" /><p class="wp-caption-text">Header Image for my Comment Validation plugin. &mdash; &ldquo;YOU SHALL NOT PASS&rdquo;</p></div><p>Late last night I spent some time and created header images for the rest of my plugins, and I am quite fond of a few of them.. I&#8217;d really like to get some feedback from your on which ones you like and which should be changed (and how/what).</p><ol><li><strong><a class="external" href="http://wordpress.org/extend/plugins/featured-image-column/" title="Featured Image Column">Featured Image Column</a></strong></li><li><strong><a class="external" href="http://wordpress.org/extend/plugins/youtube-white-label-shortcode/" title="YouTube While Label">YouTube&trade; White Label shortcode</a></strong></li><li><strong><a class="external" href="http://wordpress.org/extend/plugins/announcement-bar/" title="Announcement Bar">Announcement Bar</a></strong></li><li><strong><a class="external" href="http://wordpress.org/extend/plugins/hide-and-catch-email/" title="Hide and Catch Emails">Hide and Catch Email</a></strong></li><li><strong><a class="external" href="http://wordpress.org/extend/plugins/anywhere/" title="@Anywhere WordPress plugin">@Anywhere</a></strong></li><li><strong><a class="external" href="http://wordpress.org/extend/plugins/comment-validation-reloaded/" title="WordPress Comment Validation plugin reloaded">Comment Validation Reloaded</a></strong></li><li><strong><a class="external" href="http://wordpress.org/extend/plugins/custom-login/" title="Custom Login plugin">Custom Login</a></strong></li><li><strong><a href="http://wordpress.org/extend/plugins/eventbrite-attendees-shortcode/" title="Eventbrite Attendees Shortcode plugin">Eventbrite Attendees Shortcode</a></strong></li></ol><p>Which ones do you like best?</p><p>To see all my WordPress plugins visit my <a href="http://austinpassy.com/wordpress-plugins/" title="WordPress Plugins">plugin page</a> or my <a href="http://profiles.wordpress.org/users/austyfrosty/" title="AustyFrosty on WordPress.org">profile on WordPress.org</a>.</p> <img src="http://feeds.feedburner.com/~r/AustinPassy/~4/o4y3AZOiCOw" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/general/the-new-wordpress-dot-org-headers/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://austinpassy.com/general/the-new-wordpress-dot-org-headers/</feedburner:origLink></item> <item><title>Las Vegas in reverse (897 photos)</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/rI5M3bGOnlE/</link> <comments>http://austinpassy.com/general/las-vegas-in-reverse-897-photos/#comments</comments> <pubDate>Thu, 22 Dec 2011 01:56:51 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[Las Vegas]]></category> <category><![CDATA[Video]]></category> <category><![CDATA[WordCamp]]></category> <category><![CDATA[YouTube]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2427</guid> <description><![CDATA[This past weekend I spoke in Vegas at WordCamp. I also partied in Vegas, because it&#8217;s Vegas and I got to see a lot of WordPress friends from across the country. The video is a collage from end to beginning &#8230; <a href="http://austinpassy.com/general/las-vegas-in-reverse-897-photos/"><span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>This past weekend I spoke in <a href="http://austinpassy.com/presentations/wordcamp/las-vegas/" title="Las Vegas">Vegas</a> at <a href="http://2011.vegas.wordcamp.org/">WordCamp</a>. I also partied in Vegas, because it&#8217;s Vegas and I got to see a lot of WordPress friends from across the country.</p><p>The video is a collage from end to beginning of every photo I took (minus a few).</p> <img src="http://feeds.feedburner.com/~r/AustinPassy/~4/rI5M3bGOnlE" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/general/las-vegas-in-reverse-897-photos/feed/</wfw:commentRss> <slash:comments>5</slash:comments> <feedburner:origLink>http://austinpassy.com/general/las-vegas-in-reverse-897-photos/</feedburner:origLink></item> <item><title>A new design for the site, now version five</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/kqCj44Jqh6g/</link> <comments>http://austinpassy.com/general/a-new-design-for-the-site-now-version-five/#comments</comments> <pubDate>Thu, 22 Dec 2011 01:48:37 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[Hybrid Core]]></category> <category><![CDATA[redesign]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2424</guid> <description><![CDATA[This will be the fifth re-design of this site. As you can see I’ve moved my posts back into my home page and removed my portfolio, which is still accessible but not in your face. The last design was light, &#8230; <a href="http://austinpassy.com/general/a-new-design-for-the-site-now-version-five/"><span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>This will be the fifth re-design of this site. As you can see I’ve moved my posts back into my home page and removed my portfolio, which is still accessible but not in your face.</p><p>The last design was light, so kept that feel. I’m still using my favorite framework “Hybrid” and the hybrid core system with a HTML5 theme. I made this theme as responsive as possible, so try and move the browser in and out..</p><p>Take a peek around and let me know what you think! I know there a some bugs that need to be worked out..</p><p><img src="http://cdn.austinpassy.com/wp-content/uploads/2011/12/austinpassy-version5-550x1224.png" alt="" title="austinpassy-version5" width="550" height="1224" class="alignnone size-large wp-image-2426" /></p> <img src="http://feeds.feedburner.com/~r/AustinPassy/~4/kqCj44Jqh6g" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/general/a-new-design-for-the-site-now-version-five/feed/</wfw:commentRss> <slash:comments>2</slash:comments> <feedburner:origLink>http://austinpassy.com/general/a-new-design-for-the-site-now-version-five/</feedburner:origLink></item> <item><title>Las Vegas WordCamp presentation</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/wdRT0YHSFxk/</link> <comments>http://austinpassy.com/asides/las-vegas-wordcamp-presentation/#comments</comments> <pubDate>Sat, 17 Dec 2011 22:22:36 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[asides]]></category> <category><![CDATA[Las Vegas]]></category> <category><![CDATA[WordCamp]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2423</guid> <description><![CDATA[I&#8217;m presenting at 2:40PM here in Las Vegas! If you&#8217;re here and want to follow along, here is my HTML slide link: http://austinpassy.com/presentations/wordcamp-vegas.php]]></description> <content:encoded><![CDATA[<p>I&#8217;m presenting at 2:40PM here in Las Vegas! If you&#8217;re here and want to follow along, here is my HTML slide link: <a href="http://austinpassy.com/presentations/wordcamp-vegas.php">http://austinpassy.com/presentations/wordcamp-vegas.php</a></p> <img src="http://feeds.feedburner.com/~r/AustinPassy/~4/wdRT0YHSFxk" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/asides/las-vegas-wordcamp-presentation/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <feedburner:origLink>http://austinpassy.com/asides/las-vegas-wordcamp-presentation/</feedburner:origLink></item> <item><title>2012 Dodgers Season Tickets</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/x8xTiHUEVuM/</link> <comments>http://austinpassy.com/asides/2012-dodgers-season-tickets/#comments</comments> <pubDate>Mon, 21 Nov 2011 22:44:58 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[asides]]></category> <category><![CDATA[Dodgers]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2418</guid> <description><![CDATA[Today I became a Dodgers Season Ticket holder for the first time! I&#8217;ll be at a lot of games in twenty twelve!]]></description> <content:encoded><![CDATA[<p>Today I became a <a href="http://dodgers.com">Dodgers</a> Season Ticket holder for the first time! I&#8217;ll be at a lot of games in twenty twelve!</p> <img src="http://feeds.feedburner.com/~r/AustinPassy/~4/x8xTiHUEVuM" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/asides/2012-dodgers-season-tickets/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://austinpassy.com/asides/2012-dodgers-season-tickets/</feedburner:origLink></item> <item><title>Announcing Rock N’ Rolla version 2 @fxthemes</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/jsiu-KvjmMk/</link> <comments>http://austinpassy.com/general/announcing-rock-n-rolla-version-2-at-fxthemes-com/#comments</comments> <pubDate>Thu, 17 Nov 2011 18:02:54 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[General]]></category> <category><![CDATA[Events Caledar plugin]]></category> <category><![CDATA[Post Formats UI]]></category> <category><![CDATA[Rock N' Rolla]]></category> <category><![CDATA[Theme]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2416</guid> <description><![CDATA[Last week I transferred some themes, two to be exact from the domain themelit.com over to fxthemes.com where I&#8217;ve been listing the premium themes for sale. Along with the domain transfer the store front got a design overhaul including a &#8230; <a href="http://austinpassy.com/general/announcing-rock-n-rolla-version-2-at-fxthemes-com/"><span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p><img src="http://fxthemes.com/wp-content/uploads/2011/10/rock-n-rolla.jpg" alt="Rock N' Rolla" /></p><p>Last week I transferred some themes, two to be exact from the domain <a href="#">themelit.com</a> over to <a href="fxthemes.com">fxthemes.com</a> where I&#8217;ve been listing the premium themes for sale. Along with the domain transfer the store front got a design overhaul including a responsive design!</p><p>Since ƒxThemes got a fresh new look I thought I&#8217;d freshen up one of the two themes. <em>Rock N&#8217; Rolla</em>, effectively known just as <em>Rolla</em> in version 1 was a custom theme I built for musicians and event venues. The first installment saw my first attempt at HTML5 for public consumption. Like most WordPress work I do, I try to keep the design simple fresh and limited on external images making use of CSS and its somewhat older browser incompatible younger sibling CSS3.</p><p class="note">For the time being you can check out version 1 <a title="Photos from WordCamp LA" href="http://themelit.com/demos/rock-n-rolla">here</a> (until I take down the site).</p><h3>The Update</h3><p>Three weeks ago I started what I thought to be a slight update the the theme. I was going to update the <a href="http://themehybrid.com/hybrid-core">core framework</a> to the current <code>1.2.1</code> from <code>1.0</code>. Update some admin options like jQuery CDN hosted versions and some improved functions for the latest WordPress version <code>3.2</code> as well as the upcoming version <code>3.3</code>.</p><h3>The Overhaul</h3><p>I am not sure at what point it all changed, but the small list of changes, maybe 15 turned into a final changlog of over 150 changes. Some of which I didn&#8217;t log and almost don&#8217;t remember. So, <a href="http://fxthemes.com/news/rock-n-rolla-updated-to-version-2/">version 2</a> was born.</p><p>Even though the numerical version shows <code>0.2</code> It is still a major update to the theme. Some of the maor changes are as follows:</p><ul><li>Update: Hybrid Core to version 1.2.1.</li><li>Complete overhaul of design and colors.</li><li>Changed folder name from <code>rolla</code> to <code>rocknrolla</code>.</li><li>Added new widgets, removed old widgets.</li><li>Removed Custom Post Type event in favor of <a href="http://wordpress.org/extend/plugins/the-events-calendar/">The Events Calendar</a> plugin.</li><li>Added HTML5 audio player: <em>jPlayer</em> <small>requires javascript</small>.</li><li>Removed 95% of <a href="http://2011.sf.wordcamp.org/session/decisions-not-options/">options</a>.</li><li>Theme updated and ready for WordPress <code>3.3</code>.</li><li>Theme requires certain plugins (plugin installer included).</li><li>Added support for <a href="https://github.com/crowdfavorite/wp-post-formats">Crowd Favorites</a> <a href="http://alexking.org/blog/2011/10/25/wordpress-post-formats-admin-ui">Post Formats UI plugin</a>.</li><li>And much more..</li></ul><p>So, don&#8217;t hesitate to visit the <a href="http://fxthemes.com/theme/rock-n-rolla/">theme</a> page, the <a href="http://fxthemes.com/demos/rock-n-rolla/">demo</a> page, or purchase the theme.</p><p><strong>Bonus:</strong> If you tweet about the theme, you&#8217;ll get a discount on the price!</p> <img src="http://feeds.feedburner.com/~r/AustinPassy/~4/jsiu-KvjmMk" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/general/announcing-rock-n-rolla-version-2-at-fxthemes-com/feed/</wfw:commentRss> <slash:comments>0</slash:comments> <feedburner:origLink>http://austinpassy.com/general/announcing-rock-n-rolla-version-2-at-fxthemes-com/</feedburner:origLink></item> <item><title>Photos from WordCamp LA</title><link>http://feedproxy.google.com/~r/AustinPassy/~3/lvmDGmu5HU0/</link> <comments>http://austinpassy.com/gallery/photos-from-wordcamp-la/#comments</comments> <pubDate>Mon, 19 Sep 2011 17:25:20 +0000</pubDate> <dc:creator>frosty</dc:creator> <category><![CDATA[Gallery]]></category> <category><![CDATA[LA]]></category> <category><![CDATA[WordCamp]]></category><guid isPermaLink="false">http://austinpassy.com/?p=2366</guid> <description><![CDATA[After a few hectic weeks, things have finally settled down for me. WordCamp LA went very smooth and I know everyone had a blast! Check out the lot of photo's from the event. <a href="http://austinpassy.com/gallery/photos-from-wordcamp-la/"><span class="meta-nav">&#8594;</span></a>]]></description> <content:encoded><![CDATA[<p>After a few hectic weeks, things have finally settled down for me. <a href="http://wordcamp.la">WordCamp LA</a> went very smooth and I know everyone had a blast!</p><p>As usual I was working, making announcement and running back an forth between sessions. But I found time to take some crowd shots. I did however get quite a few from Friday&#8217;s theme workshop and WordCamp day. But, the bulk of photos I took were from the <a href="http://2011.la.wordcamp.org/08/26/after-party-at-brennans-pub/">after party</a> at Brennan&#8217;s Pub and the WordCamp LA <a href="http://2011.la.wordcamp.org/09/06/wordcamp-party-bus/">Party bus</a> (<a href="http://twitter.com/#!/search/%23wclapartybus">#wclapartybus</a>)!</p><p>So, I&#8217;ll be frugal in publishing some of these photo&#8217;s, especially <em>the one <strong>super awesome</strong> video</em> from the party bus. So enjoy.</p><a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7856/' title='Jeana Arter'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7856-150x100.jpg" class="attachment-thumbnail" alt="Jeana Arter" title="Jeana Arter" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7858/' title='WordCamp LA banner'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7858-150x100.jpg" class="attachment-thumbnail" alt="WordCamp LA banner" title="WordCamp LA banner" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7867/' title='IMG_7867'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7867-150x100.jpg" class="attachment-thumbnail" alt="IMG_7867" title="IMG_7867" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7892/' title='Chuck Reynolds'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7892-150x100.jpg" class="attachment-thumbnail" alt="Chuck Reynolds" title="Chuck Reynolds" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7897/' title='IMG_7897'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7897-150x100.jpg" class="attachment-thumbnail" alt="IMG_7897" title="IMG_7897" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7903/' title='IMG_7903'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7903-150x100.jpg" class="attachment-thumbnail" alt="IMG_7903" title="IMG_7903" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7906/' title='IMG_7906'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7906-150x100.jpg" class="attachment-thumbnail" alt="IMG_7906" title="IMG_7906" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7915/' title='IMG_7915'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7915-150x100.jpg" class="attachment-thumbnail" alt="IMG_7915" title="IMG_7915" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7921/' title='IMG_7921'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7921-150x100.jpg" class="attachment-thumbnail" alt="IMG_7921" title="IMG_7921" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7922/' title='IMG_7922'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7922-150x100.jpg" class="attachment-thumbnail" alt="IMG_7922" title="IMG_7922" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7925/' title='IMG_7925'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7925-150x100.jpg" class="attachment-thumbnail" alt="IMG_7925" title="IMG_7925" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7930/' title='IMG_7930'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7930-150x100.jpg" class="attachment-thumbnail" alt="IMG_7930" title="IMG_7930" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7931/' title='IMG_7931'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7931-150x100.jpg" class="attachment-thumbnail" alt="IMG_7931" title="IMG_7931" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7940/' title='IMG_7940'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7940-150x100.jpg" class="attachment-thumbnail" alt="IMG_7940" title="IMG_7940" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7941/' title='IMG_7941'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7941-150x100.jpg" class="attachment-thumbnail" alt="IMG_7941" title="IMG_7941" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7944/' title='IMG_7944'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7944-150x100.jpg" class="attachment-thumbnail" alt="IMG_7944" title="IMG_7944" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7946/' title='IMG_7946'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7946-150x100.jpg" class="attachment-thumbnail" alt="IMG_7946" title="IMG_7946" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7947/' title='IMG_7947'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7947-150x100.jpg" class="attachment-thumbnail" alt="IMG_7947" title="IMG_7947" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7958/' title='IMG_7958'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7958-150x100.jpg" class="attachment-thumbnail" alt="IMG_7958" title="IMG_7958" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7969/' title='IMG_7969'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7969-150x100.jpg" class="attachment-thumbnail" alt="IMG_7969" title="IMG_7969" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7973/' title='IMG_7973'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7973-150x100.jpg" class="attachment-thumbnail" alt="IMG_7973" title="IMG_7973" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7982/' title='IMG_7982'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7982-150x100.jpg" class="attachment-thumbnail" alt="IMG_7982" title="IMG_7982" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7984/' title='IMG_7984'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7984-150x100.jpg" class="attachment-thumbnail" alt="IMG_7984" title="IMG_7984" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7993/' title='IMG_7993'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7993-150x100.jpg" class="attachment-thumbnail" alt="IMG_7993" title="IMG_7993" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_8010/' title='IMG_8010'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_8010-150x100.jpg" class="attachment-thumbnail" alt="IMG_8010" title="IMG_8010" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_8119/' title='IMG_8119'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_8119-150x100.jpg" class="attachment-thumbnail" alt="IMG_8119" title="IMG_8119" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_8127/' title='IMG_8127'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_8127-150x100.jpg" class="attachment-thumbnail" alt="IMG_8127" title="IMG_8127" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_8267/' title='IMG_8267'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_8267-150x100.jpg" class="attachment-thumbnail" alt="IMG_8267" title="IMG_8267" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_8272/' title='IMG_8272'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_8272-150x100.jpg" class="attachment-thumbnail" alt="IMG_8272" title="IMG_8272" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/dcim100gopro-17/' title='DCIM100GOPRO'><img width="150" height="112" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/GOPR1005-150x112.jpg" class="attachment-thumbnail" alt="DCIM100GOPRO" title="DCIM100GOPRO" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7745/' title='IMG_7745'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7745-150x100.jpg" class="attachment-thumbnail" alt="IMG_7745" title="IMG_7745" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7747/' title='IMG_7747'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7747-150x100.jpg" class="attachment-thumbnail" alt="IMG_7747" title="IMG_7747" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7763/' title='IMG_7763'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7763-150x100.jpg" class="attachment-thumbnail" alt="IMG_7763" title="IMG_7763" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7768/' title='IMG_7768'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7768-150x100.jpg" class="attachment-thumbnail" alt="IMG_7768" title="IMG_7768" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7785/' title='IMG_7785'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7785-150x100.jpg" class="attachment-thumbnail" alt="IMG_7785" title="IMG_7785" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7794/' title='IMG_7794'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7794-150x100.jpg" class="attachment-thumbnail" alt="IMG_7794" title="IMG_7794" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7799/' title='For the love of knots'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7799-150x100.jpg" class="attachment-thumbnail" alt="For the love of knots" title="For the love of knots" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7838/' title='IMG_7838'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7838-150x100.jpg" class="attachment-thumbnail" alt="IMG_7838" title="IMG_7838" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7849/' title='IMG_7849'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7849-150x100.jpg" class="attachment-thumbnail" alt="IMG_7849" title="IMG_7849" /></a> <a href='http://austinpassy.com/gallery/photos-from-wordcamp-la/attachment/img_7851/' title='IMG_7851'><img width="150" height="100" src="http://cdn.austinpassy.com/wp-content/uploads/2011/09/IMG_7851-150x100.jpg" class="attachment-thumbnail" alt="IMG_7851" title="IMG_7851" /></a><img src="http://feeds.feedburner.com/~r/AustinPassy/~4/lvmDGmu5HU0" height="1" width="1"/>]]></content:encoded> <wfw:commentRss>http://austinpassy.com/gallery/photos-from-wordcamp-la/feed/</wfw:commentRss> <slash:comments>1</slash:comments> <feedburner:origLink>http://austinpassy.com/gallery/photos-from-wordcamp-la/</feedburner:origLink></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/84 queries in 0.039 seconds using disk: basic
Object Caching 4058/4332 objects using disk: basic
Content Delivery Network via cdn.austinpassy.com

Served from: austinpassy.com @ 2012-01-31 09:52:48 -->

