Advertisement
dbranes

http://wordpress.stackexchange.com/a/137278/26350

Mar 8th, 2014
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.47 KB | None | 0 0
  1. /**
  2.  * @link http://wordpress.stackexchange.com/a/137278/26350
  3.  */
  4.  
  5. add_action( 'admin_init', function(){
  6.  
  7.     // Current:
  8.     $wpp_rg = get_option( 'wpp_rg' );
  9.  
  10.     // Input:
  11.     $input = filter_input( INPUT_POST, 'wpp_rg', FILTER_SANITIZE_NUMBER_INT );
  12.  
  13.     // Update:
  14.     if ( ! empty( $input ) )
  15.         update_option( 'wpp_rg', $input );
  16.  
  17.     // Active:
  18.     if ( '1' === $wpp_rg )
  19.         remove_action( 'admin_notices', 'update_nag', 3 );
  20.        
  21. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement