Wstawianie w kodzie szablonu, bloga treści wybranej strony statycznej
<code>
<?php $recent = new WP_Query(„page_id=10”); while($recent->have_posts()) : $recent->the_post();?>
<?php the_title(); ?>
<?php the_content(); ?>
<?php endwhile; ?>
</code>
https://wordpress.org/support/topic/how-to-display-a-specific-page
