DEV Community

kumamon
kumamon

Posted on

プラグイン不要!WordPressのOGP,Twitterカードを設定する

<meta property="og:title" content="<?php echo meta_set('title'); ?>" />
<meta property="og:description" content="<?php echo meta_set('description'); ?>" />
<?php if ( is_home() ) : ?>
<meta property="og:type" content="website" />
<?php else: ?>
<meta property="og:type" content="article" />
<?php endif; ?>
<meta property="og:url" content="<?=home_url().$_SERVER["REQUEST_URI"]; ?>" />
<meta property="og:image" content="★★アイキャッチ画像のURL(PHPで読み込んでもいい)★★" />
<meta property="og:site_name" content="<?php echo meta_set('title'); ?>" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:site" content="@★★ここにID無ければ空欄★★" />
<meta property="og:locale" content="ja_JP" />

Top comments (0)

Sentry image

See why 4M developers consider Sentry, “not bad.”

Fixing code doesn’t have to be the worst part of your day. Learn how Sentry can help.

Learn more

👋 Kindness is contagious

Please leave a ❤️ or a friendly comment on this post if you found it helpful!

Okay