Search code examples
javascriptjqueryjsonthemestumblr

Pull first Image from {Body} / Tumblr Posts


is there a way to pull the first image from any post aka {Body} (similar to wordpress' featured image) for use as a thumbnail somewhere?

my plan is to only show the first image from every post with post title only on the index page.

possibly with the use of json or jquery or sth


Solution

  • something like this help you

    $("img:first")
    

    check this jquery selector out