sequrapayment_docs_url
Hook
Filter
Filters the URL of the plugin documentation.
Description
This filter allows modifying the URL of the plugin's documentation displayed on the Plugins screen.
Parameter | Type | Description |
---|---|---|
$url | string | Documentation URL |
Changelog
Version | Description |
---|---|
2.0.0 | Introduced |
Usage Example
add_filter('sequrapayment_docs_url', function($url){
$url = 'https://something.else.com';
return $url;
});
Updated about 1 month ago