wordpress get terms by post id code example
Example 1: wordpress get taxonomy of a post
<?php $term_obj_list = get_the_terms( $post->ID, 'taxonomy_name' ); ?>
Example 2: wordpress get post by id
$post = get_post( 123 ); // Where 123 is the ID
$output = apply_filters( 'the_content', $post->post_content );