"" ); update_option('add_email_signature_options', $arr); } } # Various functions for outputing each of the options fields function add_email_signature_options_signature() { $options = get_option('add_email_signature_options'); ?>

Add Email Signature Options

Version: $pver
Maintained by David Anderson (Homepage | UpdraftPlus - backups | Donate | FAQs)

Enter the signature which you wish to use here. Do not add the "--", as it is assumed. If you wish to temporarily turn off the adding of signatures, then just disable the plugin (your settings will not be deleted).

ENDHERE; settings_fields('add_email_signature_options'); do_settings_sections('add_email_signature'); echo <<


WordPress recommendations

UpdraftPlus (backup plugin)
Automated, scheduled WordPress backups via email, FTP, Amazon S3 or Google Drive

WordPress maintenance and hosting
We recommend Simba Hosting - 1-click WordPress installer and other expert services available - since 2007

No Weak Passwords (plugin)
This essential plugin forbids users to use any password from a list of known weak passwords which hackers presently use (gathered by statistical analysis of site break-ins).

Use Administrator Password (plugin)
When installed, this plugin allows any administrator to use their own password to log in to any valid user's account. Very useful for logging in as another user without having to change passwords back and forth.

ENDHERE; } function add_email_signature_action_links($links, $file) { if ( $file == ADDEMAILSIG_SLUG."/".ADDEMAILSIG_SLUG.".php" ){ array_unshift( $links, 'Settings', 'Donate' ); } return $links; } add_filter( 'plugin_action_links', 'add_email_signature_action_links', 10, 2 ); ?>