//管理画面のメディアの切り抜きに無理やり説明文
//クォーテーションの入れ子にポイント
add_action( 'admin_head', 'change_text2' );
function change_text2() {
$echo1 = "<table style='font-size:80%'><tr><td><span style='font-weight:bold'>サムネイル</span></td><td>制作事例・ブログサイドバーなどのサムネイル</td></tr><tr><td><span style='font-weight:bold'>d_blog_sam</span></td><td>ブログの小さい横長サムネイル</td></tr><tr><td><span style='font-weight:bold'>d_blog_sam</span></td><td>ブログTOPの1記事目のでっかいサムネイル</td></tr></table>";
echo '
<script type="text/javascript">
jQuery(document).ready(function($){
$("#aspect-ratio-selector").html("'.$echo1.'");
});
</script>
';
}