WordPress is a popular content management system (CMS) that is widely used to create and manage websites. One of the features of WordPress is the ability to customize the behavior of certain functions through the use of filters. One such filter is the “wp_mail_from_name” filter, which allows you to change the name that appears as the sender of an email sent by WordPress.

The “wp_mail_from_name” filter is a built-in filter that is applied to the “From” name of emails sent by WordPress. By default, this filter sets the “From” name to the name of the website. However, you can use this filter to change the “From” name to something else.

To change the “From” name of emails sent by WordPress, you need to create a function that uses the “wp_mail_from_name” filter. This function should take one argument, which is the current “From” name. In this function, you can change the “From” name to whatever you want.

The following is an example of a function that changes the “From” name of emails sent by WordPress to “VENU”:

add_filter( 'wp_mail_from_name', 'my_mail_from_name' );
function my_mail_from_name( $name )
{
    return 'VENU';
}

This function uses the “add_filter” function to attach the “my_mail_from_name” function to the “wp_mail_from_name” filter. This function takes the current “From” name as an argument and returns the string “VENU” as the new “From” name.

You need to paste the above code in the functions.php file which is located in your theme directory. This file is responsible for holding all the functions used by your WordPress theme. It is important to note that if you change your theme, you will lose the changes made in the functions.php file, so it is recommended to use child theme and make your customization there.

It is important to note that this code snippet is only an example and you can change the return value of the function to any string you want. Also, you can use this filter to return dynamic values based on certain conditions.

Conclusion:

In conclusion, the “wp_mail_from_name” filter in WordPress allows you to change the “From” name of emails sent by the platform. By creating a function that uses this filter, you can customize the “From” name to be whatever you want. This is a simple yet useful customization that can be used to improve the branding of your website and make your emails look more professional.