Noptin_Form::is_form()
Checks whether this is a real form and is saved to the database
Return Return
(bool)
Source Source
File: includes/class-noptin-form.php
public function is_form() { $is_form = ( $this->exists() && get_post_type( $this->id ) === 'noptin-form' ); return apply_filters( 'noptin_is_form', $is_form, $this ); }
Expand full source code Collapse full source code View on GitHub