How can i get the post’s full html source by its ID?
If you have the post’s ID, I assume that you are the owner of the blog ( Not because others can’t have the ID, but because only the owner should do such tasks ). To convert the post ID to the post’s URL, you can use get_the_permalink(): $url = get_the_permalink( $id ); Afterward, you can … Read more