get_noptin_options()
Retrieves all noptin options
Return Return
(array) options
Source Source
File: includes/functions.php
function get_noptin_options() { global $noptin_options; if ( empty( $noptin_options ) ) { $noptin_options = get_option( 'noptin_options', array() ); } if ( ! is_array( $noptin_options ) || empty( $noptin_options ) ) { $noptin_options = get_default_noptin_options(); } return $noptin_options; }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.6 | Introduced. |