ninja_forms_admin_email_message_wpautop
The Ninja Forms ninja forms admin email message wpautop hook.
Description
Parameters (1)
- 0. $wpautop (unknown) =>
wpautop( $message )
- The wpautop.
Usage
- To run the hook, copy the example below.
- $wpautop = apply_filters( 'ninja_forms_admin_email_message_wpautop', $wpautop );
- if ( !empty( $wpautop ) ) {
- // everything has led up to this point...
- }
- The following example is for adding a hook callback.
- // define the ninja_forms_admin_email_message_wpautop callback
- function filter_ninja_forms_admin_email_message_wpautop( $wpautop ) {
- // make filter magic happen here...
- return $wpautop;
- };
- // add the filter
- add_filter( 'ninja_forms_admin_email_message_wpautop', 'filter_ninja_forms_admin_email_message_wpautop', 10, 1 );
- To remove a hook callback, use the example below.
- // remove the filter
- remove_filter( 'ninja_forms_admin_email_message_wpautop', 'filter_ninja_forms_admin_email_message_wpautop', 10, 1 );
Defined (2)
The filter is defined in the following location(s).
- /deprecated/includes/deprecated.php
- $message = apply_filters( 'ninja_forms_admin_email_message_wpautop', wpautop( $message ) );
- /deprecated/classes/notification-email.php
- $message = apply_filters( 'ninja_forms_admin_email_message_wpautop', wpautop( $message ) );