ワードプレスで
<?php /** * Template part for displaying posts * * @link https://developer.wordpress.org/themes/basics/template-hierarchy/ * * @package template */ ?> <article id="post-<?php the_ID(); ?>" <?php post_class(); ?>> <header class="entry-header"> <?php if ( is_singular() ) : the_title( '<h1 class="entry-title">', '</h1>' ); else : the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); endif; if ( 'post' === get_post_type() ) : ?> <div class="entry-meta"> <?php template_posted_on(); template_posted_by(); ?> </div><!-- .entry-meta --> <?php endif; ?> </header><!-- .entry-header --> <?php template_post_thumbnail(); ?> <div class="entry-content"> <!--ここから挿入--> <?php if ( is_singular() ) : the_title( '<h1 class="entry-title">', '</h1>' ); else : the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); endif; if ( 'post' === get_post_type() ) : ?> <div class="entry-meta"> <?php template_posted_on(); template_posted_by(); ?> </div><!-- .entry-meta --> <?php endif; ?> <!--/ここまで挿入--> <?php the_content( sprintf( wp_kses( /* translators: %s: Name of current post. Only visible to screen readers */ __( 'Continue reading<span class="screen-reader-text"> "%s"</span>', 'template' ), array( 'span' => array( 'class' => array(), ), ) ), wp_kses_post( get_the_title() ) ) ); wp_link_pages( array( 'before' => '<div class="page-links">' . esc_html__( 'Pages:', 'template' ), 'after' => '</div>', ) ); ?> </div><!-- .entry-content --> <footer class="entry-footer"> <?php template_entry_footer(); ?> </footer><!-- .entry-footer --> </article><!-- #post-<?php the_ID(); ?> -->
上記のソースがあります。
// <?php // if ( is_singular() ) : // the_title( '<h1 class="entry-title">', '</h1>' ); // else : // the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); // endif; // if ( 'post' === get_post_type() ) : // ?> // <div class="entry-meta"> // <?php // template_posted_on(); // template_posted_by(); // ?> // </div><!-- .entry-meta --> // <?php endif; ?>
上記のソースを表示させたくないので コメントアウトすると
Fatal error: Uncaught Error: syntax error, unexpected 'endif' (T_ENDIF), expecting end of file in /home/users/0/main.jp-37555209be1624e7/web/new_hp/wp-content/themes/template/template-parts/content.php on line 30 コールスタック: load_template() wp-includes/template.php:716 locate_template() wp-includes/general-template.php:204 get_template_part() wp-content/themes/template/archive.php:38 include() wp-includes/template-loader.php:106 require_once() wp-blog-header.php:19 require() /home/users/0/main.jp-37555209be1624e7/web/index.php:16
上記のようなエラーがでます。
また、
<!-- <?php if ( is_singular() ) : the_title( '<h1 class="entry-title">', '</h1>' ); else : the_title( '<h2 class="entry-title"><a href="' . esc_url( get_permalink() ) . '" rel="bookmark">', '</a></h2>' ); endif; if ( 'post' === get_post_type() ) : ?> <div class="entry-meta"> <?php template_posted_on(); template_posted_by(); ?> </div><!-- .entry-meta --> <?php endif; ?> -->
このような方法でコメントアウトすると、
このように
--> という表示がでてしまい完全に消えません。
どうしたら、うまくコメントアウトで非表示ができるのでしょうか?
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。