The goal is to display entries on a specific page. I somehow tried to just paste this code.
<?php if( have_posts() ){ while( have_posts() ){ the_post(); ?> <div <?php post_class(); ?> id="post-<?php the_ID(); ?>"> <h1><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h1> <?php the_content(); ?> </div> <?php } /* конец while */ } ?> and thought records would be displayed. But there it was, there was no output of records. Someone suggested to me that it is possible to display entries using headings on a particular page, but here is the question - how to display the headings on the page? There are a lot of useless lessons on the Internet, from viewing which is one irritation, since none of them teach what it refers to in the title ... I will be very grateful for the help !!!
