sequrapayment_apidocs_url

Hook Filter

Filters the URL of the plugin API documentation.

Description

This filter allows modifying the URL of the plugin's documentation displayed on the Plugins screen.

ParameterTypeDescription
$urlstringAPI Documentation URL

Changelog

VersionDescription
2.0.0Introduced

Usage Example

add_filter('sequrapayment_apidocs_url', function($url){
  $url = 'https://something.else.com';
  return $url;
});