Description
Filter hook to change the links shown on the register page when logged in.
The generated string is passed to the filter. You may use this, overwrite it, or append to it.
Usage
add_filter( 'wpmem_register_links', 'my_register_links' ); function my_register_links( $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; }
See a list of all filter and action hooks