久しぶりに+1 ボタンページを見てみると、”+スニペットのカスタマイズ” という箇所が。
Microdata用のものだと思いますが、以前からありましたっけ…。(?)
1 2 3 4 5 6 7 | <!-- Update your html tag to include the itemscope and itemtype attributes --> <html itemscope itemtype="https://schema.org/Blog"> <!-- Add the following three tags inside head --> <meta itemprop="name" content="Title of your content"> <meta itemprop="description" content="This would be a description of the content your users are sharing"> <meta itemprop="image" content="imageUrl"> |
WordPress用
好みに合わせて適宜、変更してください。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 | <meta itemprop="name" content="<?php wp_title( '|', true, 'right' ); ?>"> <?php if ( is_single() ) { // 単独記事ページの場合 ?> <?php if ($post->post_excerpt){ ?> <meta itemprop="description" content="<?php echo $post->post_excerpt; ?>"> <?php } else { $summary = strip_tags($post->post_content); $summary = str_replace("\n","", $summary); $summary = str_replace("\r","", $summary); $summary = mb_substr($summary, 0, 100). "..."; ?> <meta itemprop="description" content="<?php echo $summary; ?>"> <?php } ?> <?php } else { // 単独記事ページ以外の場合 ?> <meta itemprop="description" content="<?php bloginfo('description'); ?>"> <?php } ?> <meta itemprop="image" content="imageUrl"> |
» +1 ボタン
—-
2012/01/27
Google+ページ用のGoogle+ボタンに、横幅の指定やカラーのオプションが付く。
» Inside Google Plus » Blog Archive » Google Plus Badges new options
» Link your Google+ page to your site – Google+ Platform — Google Developers