ヘルプ

[独自タグ]テンプレートの全体を設定する

ここで紹介をする独自タグは、ブログデザインの全体や検索サイトでの検索結果等、見えない部分に対して使用します。
サンプルでは、他のタグも交えて<head>~</head>をご紹介します。



ブログの基本情報を設定・表示する


ブログの<head>~</head>に書き込む基本情報です。

<head>■ここに記述■</head>

タグ タグ例

CSSファイルのURLを表示する

<link type=”text/css” rel=”stylesheet” href=”<!––$g_css_link––>“>


ブログのページタイトルを表示する
<title><!––$g_page_title––></title>

ブログ詳細設定で設定されるブログのキーワード1~3を表示する
主にMETAタグ内のkeywordに利用します。

<meta name=”keywords” content=”<!––$g_keyword1––> <!––$g_keyword2––> <!––$g_keyword3––>” />
<head>~</head>のタグ例

※上記ヘッダータグの組み合わせ以外にも、ヘッダーに使える他のタグを利用しています。

<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=UTF-8″ />
<meta http-equiv=”Content-Style-Type” content=”text/css” />
<meta http-equiv=”Content-Script-Type” content=”text/javascript” />
<meta name=”keywords” content=”<!––$g_keyword1––> <!––$g_keyword2––> <!––$g_keyword3––>” />
<meta name=”description” content=”<!––$g_explanation––>” />
<link rel=”stylesheet” href=”http://<!––$g_url––>/css/” type=”text/css” />
<link rel=”alternate” type=”application/rss+xml” title=”RSS” href=”http://<!––$g_url––>/RSS/” />
<link rel=”alternate” type=”application/atom+xml” title=”ATOM” href=”http://<!––$g_url––>/ATOM/” />
<title><!––$g_title––></title>
</head>