get_noptin_subscribers_overview_url( int $page = 1 )
Retrieves the URL to the subscribers page
Parameters Parameters
- $page
(int) (Optional) the page to load.
Default value: 1
Return Return
(string) The subscribers page url
Source Source
File: includes/subscriber.php
function get_noptin_subscribers_overview_url( $page = 1 ) { $url = admin_url( 'admin.php?page=noptin-subscribers' ); return add_query_arg( 'paged', $page, $url ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.5 | Introduced. |