hook, action or filter to change the form rendered by CF7
-
I would like to append something below forms rendered by CF7. Is there a hook, action or filter I can use to place text below the form rendered by the CF7 shortcode? So far I have….
function my_wpcf7_action( $contact_form ) { if(is_admin()) return; echo "something to be added below the rendered form"; }; // add the action add_action( 'wpcf7_contact_form', 'my_wpcf7_action', 10, 999 );
…but this appears to run before the form is rendered. Any ideas?
- The topic ‘hook, action or filter to change the form rendered by CF7’ is closed to new replies.