Users – remove ‘send password’ checkbox

Here are few ideas how to deal with the neutralization of the Send Password part on the /wp-admin/user-new.php page: Idea 1: We can overwrite the wp_new_user_notification() function, because it’s pluggable: Try for example: if ( ! function_exists( ‘wp_new_user_notification’ ) ): function wp_new_user_notification($user_id, $plaintext_pass=””) { $user = get_userdata( $user_id ); // The blogname option is escaped … Read more

WordPress – Promoting A Dev Build In A Subdirectory To Production / Root Directory

…just point Apache’s root directory to /public_html/development If you do this, I would seriously consider renaming “development” to “live” or something more meaningful, otherwise it’s going to get confusing going forward. Then you can create an .htaccess file in the document root with just the following mod_rewrite directive to rewrite everything to the /live subdirectory … Read more