Category: Cloud

  • When working out what is going on in WordPress

      it is sometimes useful to be able to see what globals exist. This snippet of code shows globals and excludes a couple of the big wordpress objects that probably are not of any use [php] foreach ($GLOBALS as $key => $value) { if (($key!=’GLOBALS’) && ($key!=’wp_object_cache’) && ($key!=’wp_filter’)){ if ((!is_object($value)) && (!is_array($value))) { echo…

  • Moving WordPress Server

    This is really just a quick note. Much can be found on WordPress codex describing the steps when moving server, but this one caught me out. I decided that I would move all my wordpress sites off my shared hosting reseller account to a VPS (Virtual Private Server). As I had paid for WHM/Cpanel, it…

  • This site is proudly powered by WPMU DEV

    WordPress is great and Multi site is even better, if you want a network of blogs. WPMU Dev gives you a low cost way to build a multisite wordpress installation with all the features you need to create you own fully monetised (or free) blog network. It is no surprise that WPMU Dev  is celebrating…

  • Ozh’ Admin Drop Down Menu – CSS fix for WordPress 3.2.2

    Ozh’ Admin Drop Down Menu plugin for wordpress is a great plugin which give you a top menu version for admin navigation. See http://planetozh.com/blog/my-projects/wordpress-admin-menu-drop-down-css/ However whilst implementing in WordPress 3.2.2  I found an issue with the ability to hide the original wordpress top menu. A fetaure that was previously working. I worked out these CSS changes…

  • Adding Breadcrumbs to WordPress

    I came across a very useful bit of code for adding breadcrumbs to WordPress without a plugin at http://dimox.net/wordpress-breadcrumbs-without-a-plugin/ There was a small bug in the code where is search returnd anything but a standard post (e.g. a page or custom post type) the search breadcrumb didn’t work.  The code below is the modification to correct…