description編集
<?the_excerpt();?>">にはpタグが入るためプラグインを使用。
get_the_category()はプログラム処理
<?php if ( is_home() ) : ?>
<meta name="description" content="<?php bloginfo('description'); ?>" />
<meta name="keywords" content="worpress,インストール,テンプレート,カスタマイズ" />
<?php elseif (is_category()) : ?>
<meta name="description" content="<? foreach((get_the_category()) as $cat) {
echo $cat->category_description . '';} ?>">
<link rel="start" href="<?php bloginfo('home'); ?>" title="
<?php bloginfo('name'); ?> Home" />
<?php elseif (is_single()) : ?>
<meta name="description" content="<?the_excerpt();?>">
<link rel="start" href="<?php bloginfo('home'); ?>" title="
<?php bloginfo('name'); ?> Home" />
<?php endif; ?>
関連エントリー