ディスクリプションを表示するphp

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
<?php if ( is_single()): ?>
<?php if ($post->post_excerpt){ ?>
<meta name="description" content="<? echo $post->post_excerpt; ?>" />
<?php } else {
        $summary = strip_tags($post->post_content);
        $summary = str_replace("\n", "", $summary);
        $summary = mb_substr($summary, 0, 120). "…"; ?>
<meta name="description" content="<?php echo $summary; ?>" />
<?php } ?>
<?php elseif ( is_home() || is_front_page() ): ?>
<meta name="description" content="<?php bloginfo('description'); ?>" />
<?php elseif ( is_category() ): ?>
<meta name="description" content="<?php echo category_description(); ?>" />
<?php elseif ( is_tag() ): ?>
<meta name="description" content="<?php echo tag_description(); ?>" />
<?php else: ?>
<meta name="description" content="<?php the_excerpt();?>" />
<?php endif; ?>
<meta name="keywords" content="●●●,●●●,<?php echo trim(wp_title('', false)); ?>,<?php $cat = get_the_category(); $cat = $cat[0]; {echo "$cat->cat_name" ;} ?>,<?php auto_meta_keywords() ; ?>" />

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です