Description
This filter is used for applying a custom stylesheet to the User List.
Parameters
(string)(required) The URI of the User List stylesheet.
Changelog
Since extension version 1.1.
Source
wpmem_ul_style_path is located in wp-members-user-list.php.
Usage
add_filter( 'wpmem_ul_style_path', 'my_ul_style_path' );
function my_ul_style_path( $path ) {
/*
* This will return a path to my-ul-stylesheet.css if it
* saved in your current theme's directory. Use whatever
* is appropriate based on the file name of your custom
* stylesheet and where it is located.
*/
return get_stylesheet_directory_uri( '/my-ul-stylesheet.css' );
}Code Snippet Library [Subscriber Content]
See a list of all filter and action hooks