Advertisement
fahimmurshed

Filters/Actions for Login Form Widget Example

Mar 7th, 2022
1,200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.36 KB | None | 0 0
  1. <?php
  2. // Example https://ultimateelementor.com/docs/login-form-filters/
  3. add_filter( 'uael_form_error_string', function( $strings ) {
  4.     $strings = __("You are Logged in as Darkana", "uael");
  5.     return $strings;
  6. }, 10, 1 );
  7.  
  8. add_filter( 'uael_login_remember_me', function( $string ) {
  9.     $string = __("UAE Remember me", "uael");
  10.     return $string;
  11. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement