but thats only the first one. the othres two have more comment… I’ve try to fing something in google and I’ve seen that some themes have in index.php this:
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><a href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></h1>
<?php the_content(__('Read more'));?><div style="clear:both;"></div>
mine it doesn’t appear:
get_header(); ?>
<div id="primary" class="content-area">
<main id="main" class="site-main" role="main" <?php hybrid_attr( 'content' ); ?>>
<?php if ( !is_front_page() && !is_singular() && !is_404() ) : // If viewing a multi-post page ?>
<?php locate_template( array( 'loop-meta.php' ), true ); // Loads the loop-meta.php template. ?>
<?php endif; // End check for multi-post page. ?>
<?php if ( have_posts() ) : ?>
<?php do_action( 'kuorinka_before_loop' ); // Action hook before loop. ?>
<?php /* Start the Loop */ ?>
<?php while ( have_posts() ) : the_post(); ?>
<?php
/* Include the Post-Format-specific template for the content.
* If you want to override this in a child theme, then include a file
* called content-___.php (where ___ is the Post Format name) and that will be used instead.
*/
get_template_part( 'content', ( post_type_supports( get_post_type(), 'post-formats' ) ? get_post_format() : get_post_type() ) );
?>
<?php endwhile; ?>
<?php do_action( 'kuorinka_close_loop' ); // Action hook close loop. ?>
<?php
the_posts_pagination( array(
'prev_text' => esc_html__( 'Previous page', 'kuorinka' ),
'next_text' => esc_html__( 'Next page', 'kuorinka' ),
'before_page_number' => '<span class="meta-nav screen-reader-text">' . esc_html__( 'Page', 'kuorinka' ) . ' </span>',
) );
?>
<?php else : ?>
<?php get_template_part( 'content', 'none' ); ?>
<?php endif; ?>
<?php do_action( 'kuorinka_after_loop' ); // Action hook after loop. ?>
</main><!-- #main -->
</div><!-- #primary -->
<?php get_footer(); ?>