wordpress でこちらの テーマ を使っているのですが、Leave a Comment のボタンを消す方法が分かりません。
index.php が下のようになっていて、作者が作ったような雰囲気のあるct_founder_get_content_template関数で定義しているのかなとあたりを付けました。
<?php get_header(); get_template_part( 'content/archive-header' ); ?> <div id="loop-container" class="loop-container"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); ct_founder_get_content_template(); endwhile; endif; ?> </div> <?php ct_founder_pagination(); get_footer();
ct_founder_get_template関数はfunctions.phpの706行目で定義されていました。ですが、ここを見てもLeave a Commentを消す方法が分かりませんでした。
if ( ! function_exists( 'ct_founder_get_content_template' ) ) { function ct_founder_get_content_template() { // Get bbpress.php for all bbpress pages if ( function_exists( 'is_bbpress' ) ) { if ( is_bbpress() ) { get_template_part( 'content/bbpress' ); return; } } if ( is_home() || is_archive() ) { get_template_part( 'content-archive', get_post_type() ); } else { get_template_part( 'content', get_post_type() ); } } }
解決方法が分かる方がいらっしゃいましたらお願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/01/12 14:30