I'm using the following code to display the content of the post with PostID of 4:
<?php $post_id = 4; $queried_post = get_post($post_id); echo $queried_post->post_content; ?>
However this is code is displaying the content of both languages I have defined with Qtranslate. How can I make it show only the content of the language it is set on.
Thanks!