Displaying internal linkbacks on WordPress

I have written a lot of blog posts. In some of those posts I link to other posts on my site. What's the easiest way of displaying those internal incoming links? Here's what it looks like: Code All we need to do is search WordPress for the URl of the current page. Loop through the results. Then display those links. PHP$the_query = new WP_Query(     array(         's' => get_the_permalink(), // This post         'post_type' => 'post',      // Only posts, not pages         "posts_per_page" =…