Adds a meta box to the post edit screen that shows all internal links from other posts to the currently displayed post. This way you can easily check
This shows how to modify the output inside the internal link checker meta box (in case you want to extend its functionality):
function modify_check_link_meta_box_content( $result, $links )
{
global $post;
// Uncomment the follwing line to see what the $links array contains
// The links array contains all posts (and their respective data) that link to the current post
/*
echo '';
print_r( $links );
echo '';
*/
// Now handle the result:
foreach ( $result as $link )
{
// do stuff
}
return $result;
}
add_filter( 'internal_links_meta_box', 'modify_check_link_meta_box_content', 10, 2 );
Translation ready. If you want to help translating, please contact me on G+.
Included: EN/DE (Patrick Matsumura)
Requires: 3.1 or higher
Compatible up to: 3.4.2
Last Updated: 2012-9-1
Downloads: 2,566
0 of 1 support threads in the last two months have been resolved.
Got something to say? Need help?