1

在我用于博客的模板中,这个 js 方法

document.write(bp_thumbnail_resize(&quot;<data:post.thumbnailUrl/>&quot;,&quot;<data:post.title/>&quot;)) 

据我了解,用于为每个帖子添加缩略图。但我不知道如何制作 post.thumbnailUrl 来保存我想添加到帖子中的图片网址。

我的博客。您会看到只有没有缩略图的帖子。

谢谢

4

2 回答 2

1

我使用了一个简单的 js 脚本来执行此操作。

    var t2 = &quot; <data:post.title/> &quot;;
    if(t2== &quot; COD Server Setup &quot;){
         var e = &quot;https://lh4.googleusercontent.com/-PIcMPlHmFt4/UlkBYbUzOtI/AAAAAAAAAQE/6I26Y6aNnPM/w540-h390-no/CSESign.jpg&quot;;}
    else if(t2== &quot; Same thing &quot;){
         e = &quot;https://lh4.googleusercontent.com/-162ZlFQDm1w/Ulj-NoFTknI/AAAAAAAAAPQ/NwTG2lHXROE/w180-h130-no/sample1.jpg&quot;;}
    else if(t2== &quot; Testing Post &quot;){
         e = &quot;https://lh4.googleusercontent.com/-162ZlFQDm1w/Ulj-NoFTknI/AAAAAAAAAPQ/NwTG2lHXROE/w180-h130-no/sample1.jpg&quot;;}
    else{
         e = &quot; &quot;;
        }    

  document.write(bp_thumbnail_resize( e,&quot;<data:post.title/>&quot;));

使用它时,每次添加新帖子时我都必须编辑代码,以便为帖子添加缩略图。

于 2013-10-12T11:42:08.943 回答
1

后来发现如果 post.thumbnailUrl 符合所需的图像大小,则 post.thumbnailUrl 会采用出现在帖子中的第一张图像。我使用的第一个模板效果不佳。选择不同的模板后,问题就解决了。

于 2013-11-05T15:47:48.097 回答