Nice reference doc on Cron timing, null-ing output etc.
RT @jonmarkgo: I wish there was an 11" MBA with 4G built-in… would be the ultimate travel laptop
RT @jonmarkgo: I wish there was an 11" MBA with 4G built-in… would be the ultimate travel laptop
If you weren't afraid of the Australian bush already, how about a fire-tornado to get you there? http://www.theblaze.com/stories/yes-there-is-such-a-thing-as-a-fire-nado-and-the-footage-is-terrifyingly-amazing/
RT @iamdevloper: I got 99 problems but 100 element array lengths ain't one of 'em.
Nice reference doc on Cron timing, null-ing output etc.
WordPress Powers Politics http://wp.me/p9nvA-1Jm via @WordPressVIP
This is pretty brilliant: https://icedot.org/crash
I just backed LIFX: The Light Bulb Reinvented on @Kickstarter http://kck.st/TYUFHF
Moving Jetpack Sharing Buttons – http://dntd.cc/5rv
I’m working on a new WordPress theme (for this site, and it’ll be released for download once complete). The theme is deeply integrated with Jetpack, and one of the things I wanted to do was have the Jetpack Sharing buttons appear in a location other than the very end of the content. Normally they are applied as a filter on the_content, so they just appear right at the end. I wanted to relocate them into a different location, and it turns out that’s really easy to do with the power of jQuery.
jQuery( document ).ready( function( $ ) { // Relocate Jetpack sharing buttons down into the comments form jQuery( '#sharing' ).html( jQuery( '.sharedaddy' ).detach() ); } );
The #sharing
selector is just the DOM location where I want to move the buttons to, and the .sharedaddy
one is the container that Jetpack places its buttons in normally. We just detach it from the normal position and then dump it into the new location exactly as it was.