DSC_0240.jpg by Kyle Mortara

Found via Flickr http://flic.kr/p/q3eKrM
Found via Flickr http://flic.kr/p/q3eKrM
Found via Flickr http://flic.kr/p/qjtuaK
Found via Flickr http://flic.kr/p/q1VWek
Found via Flickr http://flic.kr/p/q1ZDs8
I’ve recently been adding cache to a clients website for admins. It’s been quite the learning process and today I think I’ve finally nailed the final bug. On a set of pages we’re using a module to order displayed videos called Draggable Views. We noticed that anonymous users would sometimes, but not all the time, … Continued
There is a great plugin for Sublime Text 2 called SublimePhpTidy. It hasn’t been updated to the beta version 3 of Sublime Text as of this post. The easy fix is to clone the above github project into your packages folder. On mac it’s here ~/Library/Application Support/Sublime Text 3/Packages. I’m not sure where on Windows, … Continued
I recently needed to use posts with a heirarchal structure (like pages have by default) and ran into an issue where posts still in the draft and pending stage could not be added as a parent. This would not do as I was publishing a set of posts where I wanted more than one to … Continued
In the file wp-includes/class-wp.php there is a hook run which is simply named 'wp'. This, as far as I can tell, seems to be the earliest hook in which the $post object variable exists. The hook is passed the &$this object which the comments state: references the WP object. It allows for accessing the properties … Continued
Go to Settings → General → Accessibility → Zoom. Enable Zoom. Tap 3 fingers on the screen to bring up zoom options. Choose filter: low light. Go back to Settings → General → Accessibility → Zoom and change the zoom region to full screen. Turn Zoom off. Go to Settings → General → Accessibility → … Continued
Disabling the visual text editor in a users settings page or by the following code in your functions.php file may have an unintended consequence. //hide visual editor add_filter('user_can_richedit', create_function('', 'return false;'), 50); While it will remove the visual editor it also removes media upload capabalities (without removing the ‘add media’ button to boot!). A way … Continued