PluginProbe
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages / 3.4.3
Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages v3.4.3
3.4.3 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 All 196 releases
convertkit / views / backend / post / pre-publish-actions.php

pre-publish-actions.php in Kit (formerly ConvertKit) – Email Newsletter, Email Marketing, Membership, Subscribers and Landing Pages 3.4.3, at views/backend/post/pre-publish-actions.php

33 lines 881 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Pre publish actions view
4 *
5 * @package ConvertKit
6 * @author ConvertKit
7 */
8
9 ?>
10 <div id="convertkit-pre-publish-actions">
11 <div class="misc-pub-section">
12 <?php
13 // Iterate through actions.
14 foreach ( $pre_publish_actions as $name => $pre_publish_action ) {
15 printf(
16 '<label for="convertkit_action_%s">
17 %s
18 <input type="checkbox" name="_convertkit_action_%s" id="convertkit_action_%s" value="1"%s />
19 </label>
20 <p class="description">%s</p>',
21 esc_html( $name ),
22 esc_html( $pre_publish_action['label'] ),
23 esc_html( $name ),
24 esc_html( $name ),
25 esc_html( checked( get_post_meta( $post->ID, '_convertkit_action_' . $name, true ), '1', false ) ),
26 esc_html( $pre_publish_action['description'] )
27 );
28 }
29 wp_nonce_field( 'wp-convertkit-pre-publish-actions', 'wp-convertkit-pre-publish-actions-nonce' );
30 ?>
31 </div>
32 </div>
33