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 […]
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.
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 […]
Quick Tip: Restricting Access to WordPress Logins
As you’ve most likely noticed over the past few weeks/months, there are a lot of brute force attack attempts happening pretty regularly. Bots are trying over and over again to login to just about any WordPress site, using any credentials they can come up with. While there are many ways to combat this, one of […]
Quick Tip: Checking for Filters and Actions
Within WordPress, every once in a while you’ll need to see if a specific callback has been added to a specific action or filter. For instance, in my case, I needed to temporarily remove the callback that inserted the “Sharing” buttons via JetPack on some content I was re-purposing. In order to do that, I […]