I'm currently building a website with Wordpress where i would like to write all text in the editor, but still be able to select where on the page i want to show them and how i want to style them (By echoing them one by one in a HTML file preferably)
Let's say I have written text in three blocks. I would then like to be able to do something like this:
<h1>
<?php echo get_the_title(); ?>
</h1>
<section id="1">
<div class="a">
//block1
</div>
</section>
<section id="2">
<div class="b">
//block2
</div>
</section>
<section id="3">
<div class="c">
//block1
</div>
</section>
I could just write the text in the HTML file directly, but this would be so much easier, so if someone has a way to make this work i would be really grateful.
Thanks in advance!