sequra_settings_page_url
Hook
Filter
Must return the URL to the settings page.
Description
Modify the default seQura plugin's settings page URL.
Parameter | Type | Description |
---|---|---|
$url | string | Actual settings page URL |
Changelog
Version | Description |
---|---|
3.0.0 | Introduced |
Usage Example
add_filter('sequra_settings_page_url', function($url){
return 'https://your.awesome.url.com';
});
Updated about 1 month ago