function customize_admin_login_logo() { echo '<style type="text/css"> #login h1 a { background: url(' . get_header_logo_url() . ') no-repeat; width: 320px; height: 70px; background-size:auto 100%; background-position: center bottom; } </style>'; }
//投稿にサムネイルも画像も無い場合の処理 $ogp_image = get_stylesheet_directory_uri() . '/images/og-image.jpg'; $img_url = $ogp_image; echo '<meta name="twitter:image" content="' . $ogp_image . '">'; echo "\n"; } } } } else { //単一記事ページページ以外の場合(アーカイブページやホームなど) if (get_ogp_home_image()) { $ogp_image = get_ogp_home_image(); } else { if (is_header_logo_enable() && get_header_logo_url()) { //ヘッダーロゴがある場合はロゴを使用 $ogp_image = get_header_logo_url(); } elseif (get_header_image()) { //ヘッダーイメージがある場合はそれを使用 // } else {//ヘッダーイメージがない場合は、テーマのスクリーンショット // $ogp_image = get_stylesheet_directory_uri().'/screenshot.png'; } } /** * 2015-12-20 fixed * http://wp-simplicity.com/suport/topic/simplicity2-0%E3%81%B8%E3%81%AB%E5%90%91%E3%81%91%E3%81%A6/ */ if (!empty($ogp_image)) { //使えそうな$ogp_imageがある場合 echo '<meta name="twitter:image" content="' . $ogp_image . '">'; echo "\n"; } else {
<?php //サイトのタイトル(タイトルをロゴ画像に変更するカスタマイズなど) ?> <!-- サイトのタイトル --> <?php if (get_header_logo_url()) { //ヘッダーロゴを画像が設定されている場合 $logo_url = get_header_logo_url() ? get_header_logo_url() : get_stylesheet_directory_uri() . '/images/logo.png'; //ロゴ画像の取得 $site_title = '<a href="' . home_url('/') . '"><img src="' . $logo_url . '" alt="' . get_bloginfo('name') . '" class="site-title-img" /></a>'; } else { //ロゴがテキストの場合(デフォルト) $site_title = '<a href="' . home_url('/') . '">' . get_bloginfo('name') . '</a>'; } if (is_home() || is_front_page()) { ?> <h1 id="site-title"> <?php echo $site_title; ?> </h1> <?php } else { ?> <p id="site-title"> <?php echo $site_title; ?> </p> <?php