初心者のアフィリエイト・ASP > アフィリエイトブログ改造
FC2ブログのSEO改造
アフィリエイトをFC2ブログでする場合、テンプレートを改造しましょう。FC2ブログは、テンプレートごとにHTMLを編集する為、全てのテンプレートに共通していません。参考程度に読んで下さい。なおSEOとして効果があるかどうかも不明です。管理人は、タイトル・ブログタイトルと説明(ヘッダー部分)・記事タイトルを次のように改造しています。なおスタイルシートも調整しています。(下記タグはコピーして使用できません)
■タイトルの変更(タイトルとサブタイトルの入れ換え)
(変更前)
<title><%blog_name><%sub_title></title>
(変更後)
<title><%sub_title><%blog_name></title>
■ブログタイトルと説明の変更(h系タグの使用)
(変更前)
<div id="headBlogName"><%blog_name></div>
<div id="headIntroduction"><%introduction></div>
(変更後)
<h1 id="headBlogName"><a href="<%url>" ><%blog_name></a></h1>
<h2 id="headIntroduction"><%introduction></h2>
■記事タイトルの変更(h系タグの使用)
(変更前)
<div class="mainEntryTitle"><a id="<%topentry_no>" name="<%topentry_no>"></a><%topentry_title></div>
(変更後)
<h3 class="mainEntryTitle"><a href="<%topentry_link>" ><%topentry_title></a></h3>
SeesaaブログのSEO改造
アフィリエイトをSeesaaブログでする場合、テンプレートを改造しましょう。Seesaaブログは、HTMLが共通していて、便利です。なおSEOとして効果があるかどうかも不明です。管理人は、タイトル・ブログ説明・記事タイトルを次のように改造しています。なおスタイルシートも調整しています。(下記タグはコピーして使用できません)
■タイトルの変更(タイトルとサブタイトルの入れ換え)
(変更前)
<title><% blog.title %><% if:extra_title %>: <% extra_title %><% /if %></title>
(変更後)
<title><% if:extra_title %><% extra_title %>:<% /if %><% blog.title %></title>
■ブログ説明(h系タグの使用)
(変更前)
<% content.header -%><span class="description"><% content.blog_desc.text | nl2br | __or__ | blog.description | nl2br %></span><% content.footer -%>
(変更後)
<% content.header -%><h2 class="description"><% content.blog_desc.text | nl2br | __or__ | blog.description | nl2br %></h2><% content.footer -%>
■記事(h系タグの削除)
(変更前)
<% if:with_date %><h2 class="date"><% article.createstamp | date_format("%Y年%m月%d日") %></h2><% /if %>
(変更後)
<% if:with_date %><div class="date"><% article.createstamp | date_format("%Y年%m月%d日") %></div><% /if %>