How to display content from post_parent
As stated by the other answer, you can not pass an ID to get_the_content() function. You could fetch the post using get_post(), but there’s also another handy function that you can use to fetch the content: The get_post_field( $field, $post_id, $context ) function is what you’re looking for: $content = apply_filters( ‘the_content’, get_post_field( ‘post_content’, $post->ID … Read more