• Hello;

    get the name of the first image of a post? I just need the name of the image located to the post. (for example auto.jpg)

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter alvaro0022

    (@alvaro0022)

    I found this but I can not make it work

    imgage name displey

    any idea?

    Thread Starter alvaro0022

    (@alvaro0022)

    I found this and it works!

    <?php
            $args = array(
                'numberposts'     => -1,
                'post_type'       => 'attachment',
                'post_parent'     => $post->ID,
                'post_mime_type' => 'image'
            );
            $image = get_posts($args);
            if($image) {
                foreach($image as $key => $data) : ?>
    
    <?php echo $data->post_title; ?>
    <?php endforeach;
     }
    ?>

    anyone have any suggestions to improve the code?

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘get image name in post’ is closed to new replies.