web-dev-qa-db-ja.com

ブロガーのサムネイル名がxの場合、yを表示しますか?

私はブロガーのテーマを編集するのは初めてであり、<b:if>コードを認識する誰かが助けてくれることを願っています。

これは私が学び、私のブログスポットのテーマに入れたいものです:

投稿に特定のサムネイルがある場合、または見つからない場合は、別の画像を表示します。

このロジックのようなものですか?

If thumb=='bad_picture_name' .or. thumb=='another_bad_pic_name'

    Display good_picture

Elseif thumb==missing

    Display transparent_gif-thumb

Else

    Display thumb

Endif
2
Mike Roe

コードは次のようになります:(新しいテーマで動作します

<b:if cond='data:post.featuredImage'>
    <b:if cond='data:post.featuredImage == "img-src" or data:post.featuredImage == "img-src"'>
         Display good_picture
    <b:else/>
        Display thumb
    </b:if>
<b:else/>
    Display transparent_gif-thumb
</b:if>

古いテンプレート(バージョン2)では、featuredImagefirstImageUrlに置き換えます

2
Bassam