loginout filter-hook . WP 1.5.0
Filters the HTML output for the Log In/Log Out link.
Usage
add_filter( 'loginout', 'filter_function_name_8271' ); function filter_function_name_8271( $link ){ // filter... return $link; }
- $link(string)
- The HTML link content.
Where the hook is called
loginout
wp-includes/general-template.php 272
echo apply_filters( 'loginout', $link );
wp-includes/general-template.php 275
return apply_filters( 'loginout', $link );