2013-10-11 101 views
1

飼料所需的數據,佈局數據標籤在我已經用我的博客模板這個js方法如何在博客

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

用於縮略圖添加到每個崗位,據我的理解。但我不知道如何讓post.thumbnailUrl保存我想添加到帖子中的圖片網址。

我的blog。你會看到只有沒有縮略圖的帖子。

謝謝

回答

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;)); 

當使用這個我有,當一個新的職位,以縮略圖添加到帖子中每次添加編輯代碼。

1

後者發現post.thumbnailUrl會在帖子中顯示第一張圖片,如果它符合所需的圖片尺寸。 我使用的第一個模板效果不佳。選擇不同的模板後,問題就解決了。