https://millionclues.com/wordpress-tips/functions-hooked-to-wordpress-action-filter/
https://millionclues.com/wordpress-tips/functions-hooked-to-wordpress-action-filter/
https://millionclues.com/wordpress-tips/functions-hooked-to-wordpress-action-filter/
This is not the type of function you would require to use very often because it offers very specific feature toautomatically delete users after predefined time. I was looking to implement this feature in a past project where my client was offering temporary access to a section on his website to many users, but he…
By OutsourcedContent — on June 29, 2021 WordPress by default will preserve capitalisation in filename for images. To make filenames lowercase automatically, add the following to the functions.php of your active theme. /** * Convert filename to lowercase * * @author Arun Basil Lal * @refer https://codex.wordpress.org/Plugin_API/Filter_Reference/wp_handle_upload_prefilter */ function prefix_convert_filename_to_lowercase( $file ) { $image_extensions =…
Favicons, short for favorite icons, are a small but significant part of branding a website. They are used to display a 16×16 or 32×32 pixel image before the page title in your browser window. Favicons are also used for bookmarks in browsers and touchscreen devices. Favicons not only make your blog look more professional, but…
In previous articles we have shown you how to display most commented blog posts and today we will discuss about displaying recent comments in WordPress. WordPress comes with a recent comments widget out of the box. Although it’s very handy, but on the other hand does not give you much freedom in terms of customizing…
In version 3.7, WordPress introduced automatic background WordPress updates. We recently posted about disabling automatic updates in WordPress for security reasons but if you really like the idea of automatic background updates then how to enable automatic updates for major WordPress releases. When WordPress updates its core, it sends an email notification to the website…
Have you ever wanted a specific directory in your website to be accessible only by a selected number of people. Protecting files on your website from unauthorized users is very important and actually fairly easy. Although, there are numerous methods to password protect directory on a website but we will accomplish this with the help…