php - Call/embed wordpress post outside loop? -
permalink of post set to: <a href="/?link=<?php echo get_permalink( $postid ); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> by example comes this: http://website.com/?link=http://website.com./post-example/ i want stay on home page, , need code embed content of http://website.com./post-example/ , nice thing have post tag post-example . by tag able call , embed post inside home page? $_get['link'] http://website.com./post-example/ now how call post? solutions? , should like: if ?link= exist in url, call function (embed post title , content), otherwise nothing. it seems have post's id. ( $postid ) if have post's id , want display specific post can this: <?php $my_special_post = get_post($postid, array_a); ?> after can display post's properties. example: <?php echo $my_special_post['post_title']; ?> <?php echo $my_special_pos