sequra_settings_page_url

Hook Filter

Must return the URL to the settings page.

Description

Modify the default seQura plugin's settings page URL.

ParameterTypeDescription
$urlstringActual settings page URL

Changelog

VersionDescription
3.0.0Introduced

Usage Example

add_filter('sequra_settings_page_url', function($url){
  return 'https://your.awesome.url.com';
});