I just uploaded an introductory video to my Custom Login Pro plugin on TheFrosty.com.
Custom Login Pro Introduction Video
Papa Cristo’s
Gallery
This gallery contains 2 photos.
Dodgers Blogger Softball Tournament

Last weekend I participated in a Dodger Blogger Softball Tournament put on by Mike of The Left Field Pavilion blog.
I recently started following his blog around the time Clayton Kershaw called out Parra, I was there when he waited till the sixth inning to “throw a close one” inside to get back at his home run in the previous game against Hong-Chih Kuo after getting hit.
The Team
It was held Saturday Sep. 11, 2012 at Big League Dreams in West Covina. My girlfriend and myself joined The LFP Facebook team and was graced with some great teammates and an upcoming celebrity in the Dodgers organization.
Josh Macciello for the Dodgers
While I haven’t been following the Dodgers bidding as much as I should, I found out that Josh was on our softball team and recently put his name out there as a potential bidder on the Dodgers team! I personally would love to see this happen.The Tournament Gallery
These are the best photos I was able to get while still playing, luckily Dodgers photographer Jon SooHoo was there to capture some great shots, including one of yours truly pitching.
Fishing Cabo in February + Whales
Recently went fishing in Cabo San Lucas where I saw some whales, caught some fish and recorded a video of the latter.
Quick trip to San Diego
Gallery
This gallery contains 11 photos.
Updated: Add Pinterest pin to Jetpack with jQuery

See my update below
My girlfriend is all about Pinterest, and last week I added a link and a favicon in Jetpacks sharedaddy module. Well it didn’t work so well, and didn’t stand up to the Twitter and Facebook buttons she has.
Another issue was Jetpack doesn’t have a shortcode/regex to get the featured image and any image for that matter, so the Pinterest button never quite worked.
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.
Hard coded or in a js file
jQuery(document).ready(
function($) {
var sharedaddy = $('.sharing');
if ( sharedaddy.length > 0 ) {
$('li.share-end').before('<li class="share-regular"><a href="http://pinterest.com/pin/create/button/" class="pin-it-button" count-layout="horizontal">Pin It<script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js"></script></li>');
}
}
);
That’s it!
Function in WordPress (theme or core plugin)
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' );
}
Get your Pinterest goodies here.
Update
After some real play time with the method above I found that Pinterest didn’t grab the image from the site, so I updated the some functions and changed how I went about outputting the pin button.
First off I’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.
Example:
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 = '<div id="pinterest-wrapper" style="display:none"><a href="http://pinterest.com/pin/create/button/?url=' . $url . '&media=' . $image . '" class="pin-it-button" count-layout="horizontal">Pin It</a><script type="text/javascript" src="http://assets.pinterest.com/js/pinit.js"></script></div>';
print $html;
}
I am then hooking the above function into a hook built into the theme (I am using Hybrid Core) I am using, you may want to use wp_footer or a hook that you are more familiar with.
add_filter( "{$prefix}_after_loop", 'jeana_pinterest_button' );
The new Pinterest button should be working now, thought I’d still like to see it next to all the other share buttons, so I’ve hidden the pinterest-wrapper and will use jQuery to move and show it:
/* Pinterest */
var sharedaddy = $('.sharing');
if ( sharedaddy.length > 0 ) {
var pinterest = $('div#pinterest-wrapper');
if ( pinterest.length > 0 ) {
$('li.share-end').before('<li class="share-pinterest share-regular"></li>');
$(pinterest).delay(1000).appendTo('li.share-pinterest').show();
}
}
Custom Login Pro has arrived
After three weeks of coding I’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’ve used my custom login plugin in the past, you’ll really like this one!






























