A “Classic” Color Scheme Plugin for the WordPress Admin Area

Sometimes when I'm working in the backend of so many different WordPress sites I like to change the admin color scheme so I can tell at a glance what site I'm working with.  While working on a rebrand for Web Hosting for Students, I came across a great admin color scheme, called WP Admin Classic Colors, that looks … Continue reading A “Classic” Color Scheme Plugin for the WordPress Admin Area

Loving the New WordPress 4.2 “Powell” Updates

Whether it's the new PressThis interface (used to publish this post 😉 ), character support for things like emoticons, switching themes in the customizer, or the complex query ordering in WP_Query and the other advanced querying classes, WordPress 4.2, "Powell" brings some nice updates to WordPress. Check out the video above and the original blog post for the release … Continue reading Loving the New WordPress 4.2 “Powell” Updates

The difference between $wpdb->query vs. $wpdb->get_results in WordPress

This took me a while to figure out when I started intuitively using $wpdb->query to pull in results from a query in a custom table in WordPress. However, $wpdb->query only returns the count of the query. You have to use $wpdb->get_results to get the actual SELECT statement back. Good to know, and will save you … Continue reading The difference between $wpdb->query vs. $wpdb->get_results in WordPress