true, 'width' => true, 'height' => true, 'src' => true, 'frameborder' => true, 'allowfullscreen' => true, 'webkitAllowFullScreen' => true, 'mozallowfullscreen' => true ); $analytica_tags['script'] = array( 'type' => true, 'src' => true ); $analytica_tags['input'] = array( 'class' => true, 'name' => true, 'type' => true, 'maxlength' => true, 'minlength' => true, 'readonly' => true, 'required' => true, 'multiple' => true, 'pattern' => true, 'min' => true, 'max' => true, 'step' => true, 'list' => true, 'placeholder' => true, 'checked' => true, 'autocomplete'=> true, ); return apply_filters( __FUNCTION__, $analytica_tags ); } /** * Sanitize with allowed html * * @param $value * @return string */ function analytica_sanitize_html( $value ) { return wp_kses( $value, analytica_get_allowed_tags() ); }