0

我想在发布帖子时获得附加的图像 ID。我正在使用以下代码:-

function my_function($post_id){
    echo $imgId = get_post_thumbnail_id( $post_id ); die;
    return $post_id;
}
add_filter('publish_post', 'my_function');

它没有给出图像 ID。当我编辑并保存现有帖子时,它会返回图像 ID。

请帮忙.......

4

1 回答 1

0

This is how I get the featured image.

if ( has_post_thumbnail() ){
    $image_id = get_post_thumbnail_id();
    $alt_text = get_post_meta($image_id, '_wp_attachment_image_alt', true);
    $image_url = wp_get_attachment_image_src($image_id,'large');  
    $image_url = $image_url[0];
 }
于 2013-04-11T07:30:11.097 回答