When you select the 'Remember Me' option on the WordPress login page, a cookie is stored on your computer that contains information that allows you to automatically log in when…
The following WordPress PHP function will automatically limit the tag cloud widget list to 20 items. The number of items can be changed by adjusting the 'number' argument. The code…
The following WordPress PHP function will automatically remove the inline style from the tag cloud widget. By default the tag cloud includes inline style that sets the font size of…
A non-breaking space allows you to add a space between two words that prevents an automatic line break (line wrap) at its position. They're commonly used where amounts, such as dollars…
The following code will disable comments and pingbacks in a WordPress. add_filter( 'pings_open', '__return_false', 10, 2 ); add_filter( 'comments_open', '__return_false', 10, 2 ); To disable for all multi-site websites, you…
By default WordPress displays a toolbar (known as the admin bar) on all pages when users are logged in. This isn't necessary for a lot of WordPress sites, for example…
By default WordPress will automatically install minor updates - for example, 5.0.0 -> 5.0.1. This can be disabled in a number of ways - but remember, if you do this…
Here's four options for disabling comments in WordPress. Please note - any existing comments may still be displayed, depending on how your theme is configured. You may need to delete…
The following code will add "USD" to the end of the U.S. Dollar currency in Gravity Forms. For example, instead of seeing $34.20 - $34.20 USD is displayed. This will not…