Search code examples
wordpressmediaposts

get total no of attached media to a specific post in wordpress?


I want to display all attached media to a specific post in a slider, so I want the total count of attached media to a specific post. example I want to display as 1/5 2/5 and so on. for each post? so how to get the total count? and as well as increment the counter according.


Solution

  • The following code will do the trick

      sizeof(get_attached_media( 'image', $post_id ) )
    

    Check the link below

    get_attached_media