yaazan yeri silip dene o cümle tüm mesajları listelemek için kullanılır. Her temanın kodlanma şekli farklıdır aşağıda orjinal bir single.php de içeriği listeleyen kodları veriyorum.
single.php
yukarıda BURASI diye belirttiğim kod cümlesi content.php dosyasını çağırır ve içerik content.php dosyasındaki şablona göre işlenir.
content.php
>
/* translators: %s: Name of current post */
the_content( sprintf(
__( 'Continue reading %s ', 'twentythirteen' ),
the_title( '', '', false )
) );
wp_link_pages( array( 'before' => '' . __( 'Pages:', 'twentythirteen' ) . '', 'after' => '', 'link_before' => '', 'link_after' => '' ) );
?>