Support

Account

Home Forums Backend Issues (wp-admin) Need Urgent Solution on the new notification after the last update Reply To: Need Urgent Solution on the new notification after the last update

  • Just paste the below code in Theme > functions file.

    add_filter( ‘wp_kses_allowed_html’, ‘acf_add_allowed_iframe_tag’, 10, 2 );
    function acf_add_allowed_iframe_tag( $tags, $context ) {
    if ( $context === ‘acf’ ) {
    $tags[‘iframe’] = array(
    ‘src’ => true,
    ‘height’ => true,
    ‘width’ => true,
    ‘frameborder’ => true,
    ‘allowfullscreen’ => true,
    );
    }

    return $tags;
    }

    https://www.advancedcustomfields.com/resources/html-escaping/#customization