ID; /* Check that the user hasn't already clicked to ignore the message if ( ! get_user_meta($user_id, 'aa_ignore_notice') ) { echo '

'; printf(__('Grazie per avere installato Amministrazione Aperta!
Per la gestione dei documenti richiesti dal D.lgs. 33 dai un\'occhiata a Amministrazione Trasparente | Nascondi'), '?aa_nag_ignore=0'); echo "

"; } */ } add_action('admin_init', 'aa_nag_ignore'); function aa_nag_ignore() { global $current_user; $user_id = $current_user->ID; /* If user clicks to ignore the notice, add that to their user meta */ if ( isset($_GET['aa_nag_ignore']) && '0' == $_GET['aa_nag_ignore'] ) { add_user_meta($user_id, 'aa_ignore_notice', 'true', true); } } ?>