audio_upload_iframe_src
audio_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('audio_upload_iframe_src') is found 1 times:
- /custom-field-template.php line 238023762377237823792380238123822383238423852386
$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'
);
$media
.=
"<a href=\"{$audio_upload_iframe_src}&TB_iframe=true\" id=\"add_audio{$rand}\" title='$audio_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-music.gif' alt='$audio_title' /></a> "
;
endif
;
if
( !
$mediaOffMedia
) :
$media_title
= __(
'Add Media'
);
$media
.=
"<a href=\"{$media_upload_iframe_src}?TB_iframe=true\" id=\"add_media{$rand}\" title='$media_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-other.gif' alt='$media_title' /></a>"
;