Description
Filter hook to change the links shown on the login page when logged in.
Usage
add_filter( 'wpmem_login_links', function( $string ) {
// Original link output comes in as a $string.
// You can add to it before or after, or drop it altogether.
$string = "<p>I put this before the original links</p>" . $string;
$string = $string . "<p>This is extra stuff I added after...</p>";
return $string;
});