Skip to content

Instantly share code, notes, and snippets.

@Clorith
Created August 13, 2013 05:26
Show Gist options
  • Save Clorith/6218138 to your computer and use it in GitHub Desktop.
Save Clorith/6218138 to your computer and use it in GitHub Desktop.
Quickie on using forms in WordPress
function my_post_check()
{
if ( isset( $_POST['myslug-name'] ) )
{
Do form stuff here
}
}
add_action( 'init', 'my_post_check' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment