PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 1.9.8.0
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v1.9.8.0
3.4.2 3.4.1 3.4.0 3.3.9 3.3.8 3.3.7 3.3.6 3.3.5 3.3.4 3.3.3 3.3.2 3.3.1 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3.0 2.3.1 2.3.2 All 195 releases
convertkit / views / backend / post / quick-edit.php

quick-edit.php in Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages 1.9.8.0, at views/backend/post/quick-edit.php

46 lines 1.3 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Quick Edit view
4 *
5 * @package ConvertKit
6 * @author ConvertKit
7 */
8
9 ?>
10 <div id="convertkit-quick-edit" style="display:none;">
11 <!-- Form -->
12 <label for="wp-convertkit-form">
13 <span class="title"><?php esc_html_e( 'Form', 'convertkit' ); ?></span>
14 <select name="wp-convertkit[form]" id="wp-convertkit-form" size="1">
15 <option value="-1"><?php esc_html_e( 'Default', 'convertkit' ); ?></option>
16 <option value="0"><?php esc_html_e( 'None', 'convertkit' ); ?></option>
17 <?php
18 foreach ( $convertkit_forms->get() as $form ) {
19 ?>
20 <option value="<?php echo esc_attr( $form['id'] ); ?>"><?php echo esc_attr( $form['name'] ); ?></option>
21 <?php
22 }
23 ?>
24 </select>
25 </label>
26
27 <!-- Tag -->
28 <label for="wp-convertkit-tag">
29 <span class="title"><?php esc_html_e( 'Tag', 'convertkit' ); ?></span>
30 <select name="wp-convertkit[tag]" id="wp-convertkit-tag" size="1">
31 <option value="0">
32 <?php esc_html_e( 'None', 'convertkit' ); ?>
33 </option>
34 <?php
35 foreach ( $convertkit_tags->get() as $convertkit_tag ) {
36 ?>
37 <option value="<?php echo esc_attr( $convertkit_tag['id'] ); ?>"><?php echo esc_attr( $convertkit_tag['name'] ); ?></option>
38 <?php
39 }
40 ?>
41 </select>
42 </label>
43 <?php wp_nonce_field( 'wp-convertkit-save-meta', 'wp-convertkit-save-meta-nonce' ); ?>
44 </div>
45
46