צריך להוסיף שדא מטה בשם iframe
ולהשתמש בושרטקוד הזה
[custom_iframe]
Code language: CSS (css)
את הקוד הזה להכניס בקובץ הפונקציות:
function display_custom_iframe($atts){
global $post;
// במקרה שלא מצאנו שום שדה מטא, נחזיר ריק כדי שלא נגרום לשגיאה
$meta_url = get_post_meta($post->ID, 'iframe', true) ?? '';
$iframe = '';
if (!empty($meta_url)) {
$iframe = $meta_url;
}
return $iframe;
}
add_shortcode('custom_iframe', 'display_custom_iframe');
Code language: PHP (php)