I’m trying to retrieve the post content of a specific post: $post = get_post(/* id */); $content = $post->post_content; However, this retrieves the content with no line-breaks and omits...
Currently to differentiate between post and term objects I use short piece of code: $object = get_post($id); if ( ! $object ) { $object = get_term($id); } print_r($object); Is...