以下代码将清空Link URL
字段时间Full Size
单击按钮。并在同一字段中填充File URL
单击其他按钮时的值。
使用WordPress 3.4.2测试。在主题中删除代码functions.php
文件或创建simple plugin 为了它。
add_action( \'admin_head-media-upload-popup\', \'wpse_41539_add_remove_image_url\' );
function wpse_41539_add_remove_image_url()
{
// Don\'t run if viewing "From URL" tab
if( \'type_url\' != $_GET[\'tab\'] )
{
?>
<script type="text/javascript">
jQuery(document).ready( function($)
{
/*
* If Full Image size selected, empty the URL field
*/
$(document).on(\'change\',\'input[type="radio"][value="full"]\',function(){
$(this).parent().parent().parent().parent()
.find(\'tr.url td.field button.urlnone\').click();
});
/*
* If other image sizes selected, fill the URL field with the File URL
* Change "button.urlfile" to "button.urlpost" to use the Attachment Post URL
*/
$(document).on(\'change\',\'input[type="radio"][value!="full"]\',function(){
$(this).parent().parent().parent().parent()
.find(\'tr.url td.field button.urlfile\').click();
});
});
</script>
<?php
}
}