wpDiscuz 7 API Documentation

⌘K
  1. Home
  2. Docs
  3. wpDiscuz 7 API Documentat...
  4. Filters
  5. wpdiscuz_login_link

wpdiscuz_login_link

This hook is used for changing the HTML of the login link

Changelog

Added in version 7.0.0

Parameters

1. $login (type: string) - the HTML of the login link

Usage

add_filter("wpdiscuz_login_link", function ($login) {
    return "custom_link";
});