URL フィールドを含む画像を取得しました。このエントリを wordpress API で取得するにはどうすればよいですか?
質問する
75 次
2 に答える
1
大きな画像の URL を取得する必要がある場合は、次のコードを使用できます。
if ( has_post_thumbnail() ) {
full_image_url = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), 'full');
}
于 2012-06-15T19:25:42.613 に答える
0
入力フィールドに送信できます(非表示の場合でも)。次に、PHPでその入力フィールド値を使用します。wordpress自体が使用するデフォルトの値はjQueryです。
window.send_to_editor = function(html) {
imgurl = jQuery('img',html).attr('src');
jQuery('#your_input_name').val(imgurl);
tb_remove();
}
于 2012-06-15T14:14:24.373 に答える