Description
This filter is used for applying a custom stylesheet to the User List.
Parameters
(string)(required) The URI of the User List stylesheet.
Useage
add_filter( 'wpmem_ul_style_path', function( $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' );
});Changelog
Since extension version 1.1.
Source
wpmem_ul_style_path is located in wp-members-user-list.php.