Retrieve URLs already pinged for a post.
<?php get_pung( $post_id ) ?>
<?php
$pinged_posts = get_pung( $post->ID );
foreach ( $pinged_posts as $pinged_post ) :
if (!empty($pinged_post) ) {
echo 'Incoming Link: <a href="'.$pinged_post.'" rel="external">'.$pinged_post.'</a>';
}
endforeach;
?>
Since: 1.5.0
get_pung() is located in wp-includes/post.php.