Advertisement
Guest User

Untitled

a guest
Dec 15th, 2017
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. add_action('admin_init', 'form_processing_function');
  2. function form_processing_function() {
  3. // Form processing here.
  4. add_action('admin_notices', 'form_processing_success_message');
  5. }
  6.  
  7. function form_processing_success_message() {
  8. // Print message here
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement