79332041

Date: 2025-01-06 04:17:52
Score: 1
Natty:
Report link

Put this code in functions.php file you iframe will work -

function allow_iframes_in_acf($allowed_tags) {
    $allowed_tags['iframe'] = [
        'src'             => true,
        'width'           => true,
        'height'          => true,
        'frameborder'     => true,
        'allowfullscreen' => true,
        'allow'           => true,
    ];
    return $allowed_tags;
}
add_filter('wp_kses_allowed_html', 'allow_iframes_in_acf', 10, 1);
 
Reasons:
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: user29067552