Quick Tip: Removing “Views” Extra HTML

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: Avoiding Conflicting Favicons With Genesis & JetPack

Update The code examples provided in this post were partially inaccurate. Please refer to the comments below to see a more accurate example of how to accomplish this. A few versions back, JetPack added a nice new module that allows site owners to easily set up their own “Site Icon” (generally known as a favicon). However, […]

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: 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 […]