git-svn-id: https://192.168.0.254/svn/Proyectos.ASong2U_Web/trunk@120 cd1a4ea2-8c7f-e448-aada-19d1fee9e1d6
17 lines
350 B
PHP
17 lines
350 B
PHP
<?php
|
|
/**
|
|
** A base module for [response]
|
|
**/
|
|
|
|
/* Shortcode handler */
|
|
|
|
wpcf7_add_shortcode( 'response', 'wpcf7_response_shortcode_handler' );
|
|
|
|
function wpcf7_response_shortcode_handler( $tag ) {
|
|
if ( $contact_form = wpcf7_get_current_contact_form() ) {
|
|
$contact_form->responses_count += 1;
|
|
return $contact_form->form_response_output();
|
|
}
|
|
}
|
|
|
|
?>
|