URL に基づいてブロガーに CSS を追加しようとしています。URL は、 http://www.website.com/search/?q=label:Graphics|label:Identity|label:Brandを使用した複数のラベルの検索です。複数のラベルの検索は機能しますが、その条件ステートメントを作成する方法がわかりません。
私は試した:
<b:if cond='data:blog.canonicalUrl == "http://www.website.com/search/?q=label:Graphics|label:Identity|label:Brand"'>
<style type="text/css">
...
</style>
</b:if>
URL のクエリのため、これは機能しません。それで、私は試しました:
<b:if cond='data:blog.searchLabel == "Graphics|Identity|Brand"'>
<style type="text/css">
...
</style>
</b:if>
それは機能しませんし、適切とは思えません。XML で実行したいのですが、それができない場合は JavaScript で十分です。私も試しました:
if(window.location('http://www.website.com/search/?q=label:Graphics|label:Identity|label:Brand') === 0)
document.write("<style type='text/css'> ... </style>
);
ところで、CSS は外部ソースではなくドキュメントに含まれている必要があります。