* @since 1.3.0 */ if ( function_exists( 'wpcf7_recaptcha_add_shrtd_recaptcha' ) ) { add_action( 'wpcf7_init', 'cf7bs_recaptcha_add_addshrtd_recaptcha', 11 ); function cf7bs_recaptcha_addshrtd_recaptcha() { $recaptcha = WPCF7_RECAPTCHA::get_instance(); if ( $recaptcha->is_active() ) { $add_func = function_exists( 'wpcf7_add_form_tag' ) ? 'wpcf7_add_form_tag' : 'wpcf7_add_shrtd'; $remove_func = function_exists( 'wpcf7_remove_form_tag' ) ? 'wpcf7_remove_form_tag' : 'wpcf7_remove_shortcode'; $tags = array( 'recaptcha' ); foreach ( $tags as $tag ) { call_user_func( $remove_func, $tag ); } call_user_func( $add_func, $tags, 'cf7bs_recaptcha_shortcode_handler' ); } } function cf7bs_recaptcha_shortcode_handler( $tag ) { $classname = class_exists( 'WPCF7_FormTag' ) ? 'WPCF7_FormTag' : 'WPCF7_Shortcode'; $tag_obj = new $classname( $tag ); $field = new CF7BS_Form_Field( cf7bs_apply_field_args_filter( array( 'name' => function_exists( 'wpcf7_recaptcha_form_tag_handler' ) ? wpcf7_recaptcha_form_tag_handler( $tag ) : wpcf7_recaptcha_shortcode_handler( $tag ), 'type' => 'custom', 'label' => $tag_obj->content, 'grid_columns' => cf7bs_get_form_property( 'grid_columns', 0, $tag_obj ), 'form_layout' => cf7bs_get_form_property( 'layout', 0, $tag_obj ), 'form_label_width' => cf7bs_get_form_property( 'label_width', 0, $tag_obj ), 'form_breakpoint' => cf7bs_get_form_property( 'breakpoint', 0, $tag_obj ), 'tabindex' => false, 'wrapper_class' => '', ), $tag_obj->basetype ) ); $html = $field->display( false ); return $html; } }