noptin_subscribers_table_exists()
Checks whether the subscribers table exists
Return Return
(bool)
Source Source
File: includes/subscriber.php
function noptin_subscribers_table_exists() { global $wpdb; $table = get_noptin_subscribers_table_name(); return $table === $wpdb->get_var( "SHOW TABLES LIKE '$table'" ); }
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
1.0.5 | Introduced. |