Multiple editable content on page
you can’t pass nothing inside the_content(); except a “read more”. To achieve what you need it could be done this way; <?php get_header(); ?> // getting the header <?php if (have_posts()) : while (have_posts()) : the_post(); ?> // the loop stuff <?php // PAGE 1 $page_id = 8454; // id of the page you need … Read more