subscription-form.php
| 1 | <?php |
| 2 | /** |
| 3 | * Subscription Form pattern. |
| 4 | * |
| 5 | * @link https://sureforms.com |
| 6 | * @since 0.0.2 |
| 7 | * @package SureForms/Templates/Forms |
| 8 | * @author SureForms <https://sureforms.com/> |
| 9 | */ |
| 10 | |
| 11 | if ( ! defined( 'ABSPATH' ) ) { |
| 12 | exit; // Exit if accessed directly. |
| 13 | } |
| 14 | |
| 15 | return [ |
| 16 | 'title' => __( 'Subscription Form', 'sureforms' ), |
| 17 | 'slug' => 'subscription-form', |
| 18 | 'info' => __( 'Form for Subscription', 'sureforms' ), |
| 19 | 'categories' => [ 'sureforms_form' ], |
| 20 | 'templateCategory' => __( 'Subscription', 'sureforms' ), |
| 21 | 'postTypes' => SRFM_FORMS_POST_TYPE, |
| 22 | 'content' => '<!-- wp:srfm/advanced-heading {"block_id":"6b9decba","headingTitle":"Subscribe to our Blog Post","headingTag":"h3","blockTopPadding":0,"blockRightPadding":0,"blockLeftPadding":0,"blockBottomPadding":0,"blockTopMargin":0,"blockRightMargin":0,"blockLeftMargin":0,"blockBottomMargin":20} /--><!-- wp:srfm/email {"block_id":"6ef07308","label":"Your Email","formId":83} /-->', |
| 23 | 'postMetas' => [ |
| 24 | '_srfm_submit_alignment' => [ 'justify' ], |
| 25 | '_srfm_submit_width' => [ '100%' ], |
| 26 | '_srfm_submit_width_backend' => [ 'auto' ], |
| 27 | ], |
| 28 | 'isPro' => false, |
| 29 | ]; |
| 30 |