wpcf7_scan_shortcode
The Contact Form 7 wpcf7 scan shortcode function.
Description
wpcf7_scan_shortcode( (null) $cond = null );
Parameters (1)
- 0. $cond — Optional. (null) =>
null
- The cond.
Usage
if ( !function_exists( 'wpcf7_scan_shortcode' ) ) { require_once ABSPATH . PLUGINDIR . 'contact-form-7/includes/shortcodes.php'; } // The cond. $cond = null; // NOTICE! Understand what this does before running. $result = wpcf7_scan_shortcode($cond);
Defined (1)
The function is defined in the following location(s).
- /includes/shortcodes.php
- function wpcf7_scan_shortcode( $cond = null ) {
- wpcf7_deprecated_function( __FUNCTION__, '4.6', 'wpcf7_scan_form_tags' );
- return wpcf7_scan_form_tags( $cond );
- }