Tag: Code

  • Deactivate WordPress Default Widgets

    You do not always want to have all the widgets active, which comes within the WordPress core. You can disable the unneccessary Widgets in your functions.php of your theme with a small function. The following syntax will switch off all the standard widgets. It should therefore be adjusted depending on your requirements: // unregister all…

  • Disable Flash Uploader

    Not always is the Flashuploader of WordPress a blessing and several times I preferred to have it switched off. Usually if the blog is not online and is offline behind a proxy and firewall. With the help of the Browser uploaders there is less trouble and therefore easy to abandon the added value of Flash…

  • Change the WordPress Message

    The notifications of WordPress for the author of an article or comments are not always right on the spot according to the needs. WordPress also knew that and created these functions so that it’s easy to adapt notifications to your needs or can completely be replaced. Therefore, I will briefly show how to adjust the…

  • Use WordPress Cache

    WordPress has an internal cache, also for extensions can be used. There are various functions available and you don’t have to create something new, you can easily use the cache functionality of WordPress. To get to know and understand the features a little bit, I use a small example, therefore I cache in the following…

  • Warning Message For Self Customized Plugins

    Now and then you have to modify an existing Plugin for your own special needs. But you still get a message if an update exists for the original Plugin. If you modified the Plugin several month ago and you forgot about it, so you update the Plugin and all your modifications are gone. Most of…

  • Related Posts on Category

    It’s not easy to keep your readers on your website. It’s a challenge to provide new readers valid information, even though they were written a while ago but still up to date. A good idea is to provide posts from the same category as the post, the reader is reading currently. You can create a…