video_upload_iframe_src
video_upload_iframe_src
Appears in: custom-field-template.2.4, custom-field-template.2.4.3, custom-field-template.2.4.4, custom-field-template.2.4.5, custom-field-template.2.4.7, custom-field-template.2.4.8, custom-field-template.2.4.9, custom-field-template.2.5, custom-field-template.2.5.1, custom-field-template.2.5.2, custom-field-template.2.5.3, custom-field-template.2.5.4, custom-field-template.2.5.6, custom-field-template.2.5.7, custom-field-template.2.5.8, custom-field-template.2.5.9, custom-field-template.2.6.1, custom-field-template.2.6.5, custom-field-template.2.7.4
Hook Type: filter
Displaying hooks found in version: custom-field-template.2.7.4apply_filters('video_upload_iframe_src') is found 1 times:
- /custom-field-template.php line 237523712372237323742375237623772378237923802381
$image_title
= __(
'Add an Image'
);
$media
.=
"<a href=\"{$image_upload_iframe_src}&TB_iframe=true\" id=\"add_image{$rand}\" title='$image_title' onclick=\"focusTextArea('"
.
$textarea_id
.
"'); jQuery(this).attr('href',jQuery(this).attr('href').replace('\?','?post_id='+jQuery('#post_ID').val())); return thickbox(this);\"><img src='images/media-button-image.gif' alt='$image_title' /></a> "
;
endif
;
if
( !
$mediaOffVideo
) :
$video_upload_iframe_src
= apply_filters(
'video_upload_iframe_src'
,
"$media_upload_iframe_src?type=video"
);
$video_title
= __(
'Add Video'
);
$media
.=
"<a href=\"{$video_upload_iframe_src}&TB_iframe=true\" id=\"add_video{$rand}\" title='$video_title' onclick=\"focusTextArea('"
.
$textarea_id
.
"'); jQuery(this).attr('href',jQuery(this).attr('href').replace('\?','?post_id='+jQuery('#post_ID').val())); return thickbox(this);\"><img src='images/media-button-video.gif' alt='$video_title' /></a> "
;
endif
;
if
( !
$mediaOffAudio
) :
$audio_upload_iframe_src
= apply_filters(
'audio_upload_iframe_src'
,
"$media_upload_iframe_src?type=audio"
);
$audio_title
= __(
'Add Audio'
);