In some situations, we’re using the Views plugin (affiliate link) to make it easier to create and output extremely custom information. For instance, in one case, we’re using it to set up entirely custom XML feeds that can be quickly and simply tweaked within the WordPress dashboard. While we fully recognize that this isn’t a supported use of […]
Quick Tip: Photon and SSL
JetPack includes a module that offloads the images used on your site to WordPress.com media servers. In most cases, this can take a lot of pressure off of your server, and can also help things load much more quickly than they normally would. The Photon modules becomes especially useful when used in conjunction with the Tiled […]
Pulling Images From the Customizer
Recently, I was asked to help figure out why a friend’s new site was causing her browser to basically shut down & drag her entire computer to a crawl. After a bit of quick investigation (thankfully, my computer has a few more resources than hers, so I was able to load the site), I discovered that the […]
Managing WordPress With Git Part 1: Public Repo Plugins
This is the first article in a series that will deal with the concept of helping to manage your WordPress installation with Git. In this article, we’ll talk about using Git to manage all of your public plugins that reside in the WordPress Plugin Repository. If you do not yet have any plugins in the Plugin Repository, […]
Easter Egg: Dropping Extra Tables When Multisite Blog Is Deleted
I’m not sure why this isn’t more publicly promoted, but, while looking through some of the code for WordPress multisite this morning, I discovered a really helpful Easter egg. If you develop any plugins that add extra tables to a site, you really need to know about this. There is a filter that gets applied […]
Quick Tip: Adding New Feeds to WordPress
Adding a new type of feed to WordPress is actually fairly simple. The main function you need to use is `add_feed()`. The `add_feed()` function in itself is also extremely simple. It accepts two arguments: the “name” of the feed (the slug that should be used in the URL) and the callback function that outputs the feed.
Controlling JetPack in Large Multisite Installations
JetPack is constantly being updated, and it tends to introduce some really cool new features fairly often. However, occasionally, those new features can cause major issues in large multisite environments. There are a handful of plugins out there that let you gain some control over JetPack’s features. Most of them, though, such as Manual Control […]
Quick Tip: Keeping Users Out of the Admin Area
Every once in a while, you may have a need to keep specific user roles out of the administrative dashboard, more than likely to simply keep them from getting confused by the design differences between the front-end and the back-end. Doing so is fairly simple, but there’s one item you have to watch out for. When any AJAX requests […]