當前位置: 首頁>>代碼示例>>PHP>>正文


PHP wp_media_insert_url_form函數代碼示例

本文整理匯總了PHP中wp_media_insert_url_form函數的典型用法代碼示例。如果您正苦於以下問題:PHP wp_media_insert_url_form函數的具體用法?PHP wp_media_insert_url_form怎麽用?PHP wp_media_insert_url_form使用的例子?那麽, 這裏精選的函數代碼示例或許可以為您提供幫助。


在下文中一共展示了wp_media_insert_url_form函數的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: type_url_form_file

function type_url_form_file()
{
    __deprecated_function(__FUNCTION__, '3.3', "wp_media_insert_url_form('file')");
    return wp_media_insert_url_form('file');
}
開發者ID:valiror,項目名稱:sharingdais_demo1,代碼行數:5,代碼來源:deprecated.php

示例2: media_upload_type_url_form


//.........這裏部分代碼省略.........
			caption = caption.replace(/<[a-zA-Z0-9]+( [^<>]+)?>/g, function(a){
				return a.replace(/[\r\n\t]+/, ' ');
			});

			caption = caption.replace(/\s*\n\s*/g, '<br />');
		}
<?php 
    }
    ?>

		cls = caption ? '' : ' class="'+t.align+'"';

		html = '<img alt="'+alt+'" src="'+f.src.value+'"'+cls+' width="'+t.width+'" height="'+t.height+'" />';

		if ( f.url.value ) {
			url = f.url.value.replace(/'/g, '&#039;').replace(/"/g, '&quot;').replace(/</g, '&lt;').replace(/>/g, '&gt;');
			html = '<a href="'+url+'">'+html+'</a>';
		}

		if ( caption )
			html = '[caption id="" align="'+t.align+'" width="'+t.width+'"]'+html+caption+'[/caption]';

		var win = window.dialogArguments || opener || parent || top;
		win.send_to_editor(html);
		return false;
	},

	resetImageData : function() {
		var t = addExtImage;

		t.width = t.height = '';
		document.getElementById('go_button').style.color = '#bbb';
		if ( ! document.forms[0].src.value )
			document.getElementById('status_img').innerHTML = '*';
		else document.getElementById('status_img').innerHTML = '<img src="<?php 
    echo esc_url(admin_url('images/no.png'));
    ?>
" alt="" />';
	},

	updateImageData : function() {
		var t = addExtImage;

		t.width = t.preloadImg.width;
		t.height = t.preloadImg.height;
		document.getElementById('go_button').style.color = '#333';
		document.getElementById('status_img').innerHTML = '<img src="<?php 
    echo esc_url(admin_url('images/yes.png'));
    ?>
" alt="" />';
	},

	getImageData : function() {
		if ( jQuery('table.describe').hasClass('not-image') )
			return;

		var t = addExtImage, src = document.forms[0].src.value;

		if ( ! src ) {
			t.resetImageData();
			return false;
		}

		document.getElementById('status_img').innerHTML = '<img src="<?php 
    echo esc_url(admin_url('images/wpspin_light.gif'));
    ?>
" alt="" width="16" />';
		t.preloadImg = new Image();
		t.preloadImg.onload = t.updateImageData;
		t.preloadImg.onerror = t.resetImageData;
		t.preloadImg.src = src;
	}
}

jQuery(document).ready( function($) {
	$('.media-types input').click( function() {
		$('table.describe').toggleClass('not-image', $('#not-image').prop('checked') );
	});
});

//]]>
</script>

<div id="media-items">
<div class="media-item media-blank">
<?php 
    /**
     * Filter the insert media from URL form HTML.
     *
     * @since 3.3.0
     *
     * @param string $form_html The insert from URL form HTML.
     */
    echo apply_filters('type_url_form_media', wp_media_insert_url_form($type));
    ?>
</div>
</div>
</form>
<?php 
}
開發者ID:HaraShun,項目名稱:WordPress,代碼行數:101,代碼來源:media.php


注:本文中的wp_media_insert_url_form函數示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。