Perhaps a better question is:
How do I call in a specific post?
This seems good, except now my data and its presentation inseparably linked (if this is in a template):
<?php
$post_id = 5;
$queried_post = get_post($post_id);
?>
I guess what I’m trying to figure out is where all of the HTML on that page comes from? There are several distinct sections stacked on top of each other. Are they…
…just all pasted into the page editor as HTML?
…a loop of posts that are used to render the page?
…something else like widgets, etc?
Thanks for working with me on this!
I can code it up in a template with HTML and PHP no problem. Should various pieces of content (for example the “Packed With Features.. Gravity Forms Really Satisfies” section) be put into a widget so it can be easily moved around?