Pull the first image from a Tumblr photoset?

前端 未结 3 2091
执笔经年
执笔经年 2021-02-06 18:26

I\'m designing a theme for a wedding photographer who wants to use Tumblr\'s Photoset functionality to create a portfolio site.

How do I pull the first image from a phot

3条回答
  •  清酒与你
    2021-02-06 19:04

    Tumblr markup:

    {block:Photoset}
        
    {block:Photos} {/block:Photos}
    {/block:Photoset}

    Note: may be you need {PhotoURL-75sq} to output square preview instead of 500px image;

    CSS:

    .photoset-wrap img { display: none; }
    .photoset-wrap img:first-child { display: block; }
    

提交回复
热议问题