Skip to content

Instantly share code, notes, and snippets.

@yuriinalivaiko
Created November 6, 2022 16:34
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save yuriinalivaiko/dfdc0d17f91a2235af5d9d5beea8b683 to your computer and use it in GitHub Desktop.
Save yuriinalivaiko/dfdc0d17f91a2235af5d9d5beea8b683 to your computer and use it in GitHub Desktop.
Hook um_after_everything_output
<?php
/**
* Hook: um_after_everything_output
*
* Type: action
*
* Description: Fires after the form shortcode is loaded.
*
* @example https://github.com/ultimatemember/ultimatemember/blob/master/includes/core/class-shortcodes.php#L819
* @link https://docs.ultimatemember.com/article/1016-umaftereverythingoutput
*
* @package um\core
* @see um\core\Shortcodes::load()
* @since 2.0
* @version 3.0
*/
function my_after_everything_output() {
// your code here.
}
add_action( 'um_after_everything_output', 'my_after_everything_output', 10, 1 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment