Skip to content

Instantly share code, notes, and snippets.

@hideokamoto
Last active August 29, 2015 14:14
Show Gist options
  • Save hideokamoto/b997078b105ff41ba024 to your computer and use it in GitHub Desktop.
Save hideokamoto/b997078b105ff41ba024 to your computer and use it in GitHub Desktop.
WordPressの検索・アーカイブ・著者ページ一覧にogp:imageを追加するfunctions.phpコード
add_action('wp_head','add_ogp_img');
function add_ogp_img(){
if (is_archive() || is_author() || is_search()){
$homeUrl = get_home_url();
echo "<meta property='og:image' content='{$homeUrl}'/.png'>";
}
}
@hideokamoto
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment