For instance, I’d like the ratings block to appear for post with $post_id = 5;
just after I post the content of the post in this manner:
<?php
$post_id = 5;
$queried_post = get_post($post_id);
$title = $queried_post->post_title;
echo $title;
echo $queried_post->post_content;
?>