Ads By Google
Seesaaブログで各記事毎にBlogrankingバナーを張る方法。
Seesaaブログで各記事毎にBlogrankingバナーを張る方法が知りたいです。教えてください。
挿入テキスト(下部)に書いたところ、
ページの一番下に挿入されました。
きっと、HTMLの内部に書かなければならないハズ。
よろしくおねがいします。
2006-08-22 05:00の質問
この質問と回答を読んで役に立った場合は「役に立つ質問」に投票してください。投票が多い質問は、役に立つ質問一覧に掲載され、より多くの人に見てもらうことができます。
回答(1)
1.
2006-08-22 06:42:31

こういうのでいいのかな。
デザイン、コンテンツから記事を選択し、右上のコンテンツHTML編集を開いてソースを表示させ、その中から以下のところを探す。
(前略)
dc:subject="<% article_category.name | nl2br | tag_strip | xml %>"
dc:date="<% article.createstamp | date_format("%Y-%m-%dT%H:%M:%S+09:00")
%>"
/>
</rdf:RDF>
-->
<% if:with_date %><h2 class="date"><% article.createstamp
| date_format("%Y年%m月%d日") %></h2><% /if %>
<div class="blogbody">
<h3 class="title"><a href="<% article.page_url %>" class="title"><%
article.subject %></a></h3>
<% if:page_name eq 'article' -%>
<div class="text"><% if:diet_log %><% include:article_diet_file
%><% /if %><% article.entire_body | bodyfilter(article_info,blog)
%><!-- ランキング --><!--
ランキング --></div>
<% else -%>
<div class="text"><% if:diet_log %><% include:article_diet_file
%><% /if %><% article.first_body | bodyfilter(article_info,blog)
%><!-- ランキング --><!--
ランキング --></div>
<% /if -%>
<div class="posted">posted by <% article.nickname %> at <%
article.createstamp | date_format("%H:%M") -%>
<% if:article_weather -%>
| <% article_weather.state %> <% article_weather.weather_emoji -%>
<% /if -%>
以下略
<!-- ランキング -->と
<!--ランキング -->の間にソースを貼る(2カ所)
デザイン、コンテンツから記事を選択し、右上のコンテンツHTML編集を開いてソースを表示させ、その中から以下のところを探す。
(前略)
dc:subject="<% article_category.name | nl2br | tag_strip | xml %>"
dc:date="<% article.createstamp | date_format("%Y-%m-%dT%H:%M:%S+09:00")
%>"
/>
</rdf:RDF>
-->
<% if:with_date %><h2 class="date"><% article.createstamp
| date_format("%Y年%m月%d日") %></h2><% /if %>
<div class="blogbody">
<h3 class="title"><a href="<% article.page_url %>" class="title"><%
article.subject %></a></h3>
<% if:page_name eq 'article' -%>
<div class="text"><% if:diet_log %><% include:article_diet_file
%><% /if %><% article.entire_body | bodyfilter(article_info,blog)
%><!-- ランキング --><!--
ランキング --></div>
<% else -%>
<div class="text"><% if:diet_log %><% include:article_diet_file
%><% /if %><% article.first_body | bodyfilter(article_info,blog)
%><!-- ランキング --><!--
ランキング --></div>
<% /if -%>
<div class="posted">posted by <% article.nickname %> at <%
article.createstamp | date_format("%H:%M") -%>
<% if:article_weather -%>
| <% article_weather.state %> <% article_weather.weather_emoji -%>
<% /if -%>
以下略
<!-- ランキング -->と
<!--ランキング -->の間にソースを貼る(2カ所)
何とかうまくいきました。
なかなか着手出来ず、申し訳ありませんでした。
ありがとうございました。
Ads By Google



