サイト内検索
Cocoonフォーラム
書き込みの前に以下の3点をご確認ください。
何を書き込んだら良いか分からない場合は、以下のテンプレートをコピペしてご利用ください。
不具合・カスタマイズ対象ページのURL:
相談内容:
不具合の発生手順:
解決のために試したこと:
※文字だけでは正しく伝わらない可能性があるため、スクショ画像の添付もお願いします。
※高速化設定をしている場合は無効にしてください。
環境情報:※↑こちらに「Cocoon設定 → テーマ情報」にある「環境情報」を貼り付けてください。
環境情報の取得方法はこちら。
→ https://wp-cocoon.com/theme-report/
高速化設定を無効にするにはこちら。
→ https://wp-cocoon.com/theme-trouble/
フォーラム利用ガイドリンク
- フォーラムガイドライン
- よくある質問と答え(FAQ)
- サポート対象外のケース
- 原因不明の不具合用トラブルシューティング
- トピックにHTMLを貼り付ける方法(推奨ツール:notepad.pw)
- 真っ白画面でのエラーメッセージの確認方法
- ブラウザ環境チェックツール
- Cocoonカスタマイズ依頼
フォーラム質問後、問題等が解決した場合は結果を書き込んでいただけると幸いです。同様の問題で調べている方には、結果が一番気になる部分となります。
Topic starter
2019年10月28日 11:35
必須の構造化データ要素のエラーが出ているのですが解決方法がまったくわからず困っています。無知で申し訳ないのですがどなたか教えていただきたいです。
よろしくお願いいたします。
2019年10月28日 12:46
こんにちは。
おそらくCocoonではないプラグインによって、構造化データが出力されているかもしれません。
環境情報を添えていただけますでしょうか?
わいひら reacted
Topic starter
2019年10月28日 12:52
下記になります!よろしくお願いします
----------------------------------------------
サイト名:-旅ブログ-韓国・国内の旅行情報と韓国コスメを紹介
サイトURL: https://korea1travel.com
ホームURL: https://korea1travel.com
コンテンツURL:/wp-content
インクルードURL:/wp-includes/
テンプレートURL:/wp-content/themes/cocoon-master
スタイルシートURL:/wp-content/themes/cocoon-child-master
子テーマスタイル:/wp-content/themes/cocoon-child-master/style.css
Wordpressバージョン:5.2.4
PHPバージョン:7.1.5
ブラウザ:Mozilla/5.0 (Macintosh; Intel Mac OS X 10_12_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/77.0.3865.120 Safari/537.36
サーバーソフト:Apache
サーバープロトコル:HTTP/1.1
エンコーディング:gzip, deflate, br
言語:ja,en-US;q=0.9,en;q=0.8,ko;q=0.7
----------------------------------------------
テーマ名:Cocoon
バージョン:1.9.9.5.3
カテゴリ数:7
タグ数:25
ユーザー数:1
----------------------------------------------
子テーマ名:Cocoon Child
バージョン:1.0.8
----------------------------------------------
Gutenberg:1
AMP:1
PWA:0
Auto Post Thumbnail:0
ホームイメージ:/wp-content/themes/cocoon-master/screenshot.jpg
----------------------------------------------
ブラウザキャッシュ有効化:0
HTML縮小化:0
CSS縮小化:0
JavaScript縮小化:0
Lazy Load:0
WEBフォントLazy Load:0
JavaScript(フッター):1
----------------------------------------------
利用中のプラグイン:
410 for WordPress 0.8.7
Akismet Anti-Spam 4.1.2
Autoptimize 2.5.1
Contact Form 7 5.1.4
Google XML Sitemaps 4.1.0
Hello Dolly 1.7.2
Regenerate Thumbnails 3.1.1
Rinker 1.5.6
SiteGuard WP Plugin 1.4.3
----------------------------------------------
Topic starter
2019年10月28日 13:35
調べてくださりありがとうございます!!
tmp/content.phpを他サイトを参考に変更しております。
参考サイトは https://ponhiro.com/cocoon-toppage-customize/ で変更したphpの内容は下記です。
<?php //投稿・固定ページ本文
/**
* Cocoon WordPress Theme
* @author: yhira
* @link: https://wp-cocoon.com/
* @license: http://www.gnu.org/licenses/gpl-2.0.html GPL v2 or later
*/
if ( !defined( 'ABSPATH' ) ) exit; ?>
<article id="post-<?php the_ID(); ?>" <?php post_class('article') ?> itemscope="itemscope" itemprop="blogPost" itemtype="https://schema.org/BlogPosting">
<?php
if ( have_posts() ) {
while ( have_posts() ) {
the_post(); ?>
<?php if ( ! is_front_page() ): ?>
<?php //タイトル上の広告表示
if (is_ad_pos_above_title_visible() && is_all_adsenses_visible()){
get_template_part_with_ad_format(get_ad_pos_above_title_format(), 'ad-above-title', is_ad_pos_above_title_label_visible());
}; ?>
<?php //投稿タイトル上ウイジェット
if ( is_single() && is_active_sidebar( 'above-single-content-title' ) ): ?>
<?php dynamic_sidebar( 'above-single-content-title' ); ?>
<?php endif; ?>
<header class="article-header entry-header">
<h1 class="entry-title" itemprop="headline">
<?php
if (is_wpforo_plugin_page()) {
echo wp_get_document_title();
} else {
the_title();
}
?>
</h1>
<?php //タイトル下の広告表示
if (is_ad_pos_below_title_visible() && is_all_adsenses_visible()){
get_template_part_with_ad_format(get_ad_pos_below_title_format(), 'ad-below-title', is_ad_pos_below_title_label_visible());
}; ?>
<?php //投稿タイトル下ウイジェット
if ( is_single() && is_active_sidebar( 'below-single-content-title' ) ): ?>
<?php dynamic_sidebar( 'below-single-content-title' ); ?>
<?php endif; ?>
<?php //アイキャッチ挿入
get_template_part('tmp/eye-catch'); ?>
<?php //SNSシェアボタン
if (is_sns_top_share_buttons_visible())
get_template_part_with_option('tmp/sns-share-buttons', SS_TOP); ?>
<?php //投稿日と更新日テンプレート
get_template_part('tmp/date-tags'); ?>
<?php if (is_content_read_time_visible() && is_the_page_read_time_visible() && !is_plugin_fourm_page()): ?>
'.sprintf(__( 'この記事は約%s分で読めます。', THEME_NAME ), get_time_to_content_read(get_the_content())); ?>
<?php endif; ?>
<?php //本文上の広告表示
if (is_ad_pos_content_top_visible() && is_all_adsenses_visible()){
get_template_part_with_ad_format(get_ad_pos_content_top_format(), 'ad-content-top', is_ad_pos_content_top_label_visible());
}; ?>
<?php //投稿本文上ウイジェット
if ( is_single() && is_active_sidebar( 'single-content-top' ) ): ?>
<?php dynamic_sidebar( 'single-content-top' ); ?>
<?php endif; ?>
<?php //固定ページ本文上ウイジェット
if ( is_page() && is_active_sidebar( 'page-content-top' ) ): ?>
<?php dynamic_sidebar( 'page-content-top' ); ?>
<?php endif; ?>
</header>
<?php endif; ?>
" itemprop="mainEntityOfPage">
the_content(); ?>
the_content(); ?>
<?php if ( ! is_front_page() ): ?>
<?php //マルチページ用のページャーリンク
get_template_part('tmp/pager-page-links'); ?>
<?php endif; ?>
<footer class="article-footer entry-footer">
<?php if ( ! is_front_page() ): ?>
<?php //投稿本文下ウイジェット
if ( is_single() && is_active_sidebar( 'single-content-bottom' ) ): ?>
<?php dynamic_sidebar( 'single-content-bottom' ); ?>
<?php endif; ?>
<?php //固定ページ本文下ウイジェット
if ( is_page() && is_active_sidebar( 'page-content-bottom' ) ): ?>
<?php dynamic_sidebar( 'page-content-bottom' ); ?>
<?php endif; ?>
<?php //カテゴリー・タグ
get_template_part('tmp/categories-tags'); ?>
<?php //本文下の広告表示
if (is_ad_pos_content_bottom_visible() && is_all_adsenses_visible()){
//レスポンシブ広告のフォーマットにrectangleを指定する
get_template_part_with_ad_format(get_ad_pos_content_bottom_format(), 'ad-content-bottom', is_ad_pos_content_bottom_label_visible());
}; ?>
<?php //SNSシェアボタン上の広告表示
if (is_ad_pos_above_sns_buttons_visible() && is_all_adsenses_visible()){
get_template_part_with_ad_format(get_ad_pos_above_sns_buttons_format(), 'ad-above-sns-buttons', is_ad_pos_above_sns_buttons_label_visible());
}; ?>
<?php //投稿SNSボタン上ウイジェット
if ( is_single() && is_active_sidebar( 'above-single-sns-buttons' ) ): ?>
<?php dynamic_sidebar( 'above-single-sns-buttons' ); ?>
<?php endif; ?>
<?php //固定ページSNSボタン上ウイジェット
if ( is_page() && is_active_sidebar( 'above-page-sns-buttons' ) ): ?>
<?php dynamic_sidebar( 'above-page-sns-buttons' ); ?>
<?php endif; ?>
<?php //SNSシェアボタン
if (is_sns_bottom_share_buttons_visible())
get_template_part_with_option('tmp/sns-share-buttons', SS_BOTTOM); ?>
<?php //SNSフォローボタン
if (is_sns_follow_buttons_visible())
get_template_part_with_option('tmp/sns-follow-buttons', SF_BOTTOM); ?>
<?php //SNSシェアボタン上の広告表示
if (is_ad_pos_below_sns_buttons_visible() && is_all_adsenses_visible()){
get_template_part_with_ad_format(get_ad_pos_below_sns_buttons_format(), 'ad-below-sns-buttons', is_ad_pos_below_sns_buttons_label_visible());
}; ?>
<?php //投稿SNSボタン下ウイジェット
if ( is_single() && is_active_sidebar( 'below-single-sns-buttons' ) ): ?>
<?php dynamic_sidebar( 'below-single-sns-buttons' ); ?>
<?php endif; ?>
<?php //固定ページSNSボタン下ウイジェット
if ( is_page() && is_active_sidebar( 'below-page-sns-buttons' ) ): ?>
<?php dynamic_sidebar( 'below-page-sns-buttons' ); ?>
<?php endif; ?>
<?php //投稿者等表示用のテンプレート
get_template_part('tmp/footer-meta'); ?>
<?php endif; ?>
<!-- publisher設定 -->
<?php
$home_image_url = get_amp_logo_image_url();
$size = get_image_width_and_height($home_image_url);
$width = isset($size['width']) ? $size['width'] : 600;
$height = isset($size['height']) ? $size['height'] : 60;
$sizes = calc_publisher_image_sizes($width, $height);
$width = $sizes ? $sizes['width'] : 600;
$height = $sizes ? $sizes['height'] : 60;
?>
" width="" height="" alt="">
">
">
">
">
">
">
</div>
</footer>
<?php
} // end while
} //have_posts end if ?>
</article>
Topic starter
2019年10月28日 13:59
とてもご親切に教えていただきありがとうございました!順位には問題ないという事で安心しました。製作者に連絡して問い合わせてみます!
問題の解決に至った場合には、トピック冒頭の「解決済み」をクリックしていただけますと幸いです。
また、有用な回答があった場合は返信右下にある「いいね!」もご活用ください。回答者の励みになります。
(CC BY-ND 2.1)準じていれば(リンクを貼っていただければ)転載も自由です。カスタマイズ記事を書く際にコード等をコピペ利用していただいて構いません。
フォーラムの使い方がよくわからない場合は、テストトピックで自由にテストしていただいて構いません。
最近の書き込みはこちら。
詳細なカスタマイズ依頼をするならこちら。