I go to settings and select “Front page displays blog page”. Now if I go to edit that page, there is no templates available under Page attributes.
Using woocommerce storefront theme.
index.php
, but could be something different depending on your theme. If you want to make changes to that you’ll have to find the right remplate file, which will be one of the archive templates.
]]>
<?php
$id=74;
$post = get_post($id);
$title = apply_filters('the_title', $post->post_title);
echo $title;
$content = apply_filters('the_content', $post->post_content);
echo $content;
?>
]]>
echo '<h1>' . $title . '</h1>';