wpDiscuz 7 API Documentation

  1. Home
  2. Docs
  3. wpDiscuz 7 API Documentation
  4. Filters
  5. wpdiscuz_login_link
Generic selectors
Exact matches only
Search in title
Search in content
Post Type Selectors

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";
});

Was this article helpful to you? Yes 1 No