Popular Posts
All posts ordered by popularity
WordPress redirect logged in users
Nice WordPress snippet to redirect logged in users to any location. Also optionally redirect visitors who are not logged in to WordPress.
Shortcut to WP Login
Back in January of 2011, Chris Coyier posted a sweet .htaccess technique for setting up Simpler Login URLs in WordPress. This is a follow-up technique that’s slightly improved..
WordPress Disable jQuery Migrate
The jQuery Migrate plugin is used to help sites upgrade to the latest version of jQuery. The script restores APIs that have been removed, and the development version shows warnings in the browser console for any deprecated or missing APIs. This enables developers and admins to more easily upgrade from older to newer versions of […]
Redirect HTTP to PHP via .htaccess
Here is how to redirect specific URL requests to a PHP script for further processing, etc. Very useful for monitoring HTTP activity, logging errors, and more.
WordPress Check User Roles
Here is a plug-n-play function to check user roles, based on an array of input values.
WordPress Disable Author Archives
This WordPress snippet disables all author-archive views. This may be useful to prevent user enumeration scans, and also may help to minimize duplicate content (for SEO purposes).
PHP: Get current URL
Nice lil slab of PHP to get the current URL. Useful for a wide variety of applications, nice one to have in the tool belt.
CSS box-sizing all elements
The CSS box-sizing property makes it much easier to work with elements that have padding and borders. Here is a ruleset that will apply the box-size property to all elements.
jQuery Reload Current Page on Click
jQuery makes it easy to do all kinds of cool stuff. For example, here is a code snippet to reload the current page with a click.
jQuery Open Links in New Tab
Over the years, I’ve collected various JavaScript techniques for opening external links in their own tab. Here they are, all in one convenient post..
Cross domain posting with Ajax
Technically cross-domain posting is not allowed, but here is a workaround that may prove useful for your brainstorming sessions. Note that this technique is aimed at advanced developers.
Get all meta data for WordPress user
Quick tip to get all meta data for any WordPress user. Warning, arrays ahead..