Replies: 0
I want to hide my SMTP password by adding this code to my wp-config file:
define( ‘WPMS_ON’, true );
define( ‘WPMS_SMTP_PASS’, ‘mypassword’ );
I always thought that code like this should be added above the line:
/* That’s all, stop editing! Happy publishing. */
However, in the WP Mail SMTP settings page I see this:
“To do this add the lines below to your wp-config.php file:”
I assume you mean directly above the line
/* That’s all, stop editing! Happy publishing. */
and not completely at the bottom of the wp-config file,
correct?