Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save uzegonemad/90ad911553164f714641 to your computer and use it in GitHub Desktop.
Save uzegonemad/90ad911553164f714641 to your computer and use it in GitHub Desktop.
<?php
/**
* Plugin Name: Remove login autocomplete
* Description: Disable login password autocomplete
* Version: 0.1
* Author: Nobody
* License: WTFPL
*/
add_action('login_init', 'acme_autocomplete_login_init');
function acme_autocomplete_login_init()
{
ob_start();
}
add_action('login_form', 'acme_autocomplete_login_form');
function acme_autocomplete_login_form()
{
$content = ob_get_contents();
ob_end_clean();
$content = str_replace('id="user_pass"', 'id="user_pass" autocomplete="off"', $content);
echo $content;
}
@Khaleel
Copy link

Khaleel commented Nov 14, 2018

Looks great. Where does this go? Inside the plugins folder?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment