Update:
I’ve found replacing the file in another directory like ‘pumpkin’ to work.
^^ It might be implicit, but please notice that I do not want to use the ‘posts Loop’ in this scenario
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;
?>