Description
Filters the WP-Members sidebar login/login status widget title. While the title can be set in the widget settings, you can use the filter to change it on the fly (showing different titles based on login status) or remove it altogether.
Usage
add_filter( 'wpmem_widget_title', 'my_widget_title' ); function my_excerpt_filter( $title ) { // you can filter the $title, but // be sure to return the result at the end return $title; }
Code Snippet Library [Subscriber Content]
See a list of all filter and action hooks