Skip to content

Instantly share code, notes, and snippets.

@theukedge
Created January 24, 2014 15:33
Show Gist options
  • Save theukedge/8599570 to your computer and use it in GitHub Desktop.
Save theukedge/8599570 to your computer and use it in GitHub Desktop.
<?php // add shortcode to display message
function signup_complete_shortcode( $atts, $content = null ) {
$signup = get_query_var('signup');
if( $signup == "success" ) {
return do_shortcode( $content );
}
}
add_shortcode( 'signup_success', 'signup_complete_shortcode' );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment