wpcf7_response_form_tag_handler
The Contact Form 7 wpcf7 response form tag handler function.
Description
wpcf7_response_form_tag_handler( $tag );
Parameters (1)
- 0. $tag
- The tag.
Usage
if ( !function_exists( 'wpcf7_response_form_tag_handler' ) ) { require_once ABSPATH . PLUGINDIR . 'contact-form-7/modules/response.php'; } // The tag. $tag = null; // NOTICE! Understand what this does before running. $result = wpcf7_response_form_tag_handler($tag);
Defined (1)
The function is defined in the following location(s).
- /modules/response.php
- function wpcf7_response_form_tag_handler( $tag ) {
- if ( $contact_form = wpcf7_get_current_contact_form() ) {
- return $contact_form->form_response_output();
- }
- }