Problem with Class, Filters and Callbacks
Here’s a slightly modified version of your code snippet: add_action( ‘login_head’, [ ‘WPSE_Admin’, ‘plugin_setup’ ] ); class WPSE_Admin { public static function plugin_setup() { add_filter( ‘login_headerurl’, [ ‘WPSE_Admin’, ‘the_logo_url’ ] ); } public function the_logo_url() { return get_bloginfo(‘url’); } } The filter callbacks must be public, not private. The reason for this is that apply_filters()/apply_filters_ref_array() … Read more