PluginProbe
WP Coder – Insert & Manage Code Snippets / 3.4
WP Coder – Insert & Manage Code Snippets v3.4
4.5.1 1.1 2.3.1 2.3.2 2.4.1 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 3.0 3.0.1 3.0.2 3.0.3 3.0.4 3.0.5 3.1 3.1.1 3.2 3.2.1 3.3 3.4 3.5 3.5.1 All 39 releases
← All changes | includes/pages/1.list.php +16 -6 3.13.4 View file →
@@ -17,15 +17,23 @@
17 17 ], admin_url( 'admin.php' ) );
18 18 ?>
19 19
20 20 <div class="wowp-header-wrapper">
21 - <?php DashboardInitializer::header(); ?>
21 + <?php
22 + DashboardInitializer::header(); ?>
22 23
23 24 <div class="wowp-header-title">
24 - <h2><?php esc_html_e( 'All Codes', 'wpcoder' ); ?></h2>
25 - <a href="<?php echo esc_url( $add_url ); ?>" class="button button-primary button-large">
26 - <?php esc_html_e( 'Add New', 'wpcoder' ); ?>
25 + <h2><?php
26 + esc_html_e( 'All Codes', 'wpcoder' ); ?></h2>
27 + <a href="<?php
28 + echo esc_url( $add_url ); ?>" class="button button-primary button-large">
29 + + <?php
30 + esc_html_e( 'Add New', 'wpcoder' ); ?>
27 31 </a>
32 + <a href="https://wpcoder.pro/snippet/?utm_source=wordpress&utm_medium=admin-menu&utm_campaign=snippets"
33 + class="button button-secondary button-large" target="_blank">
34 + <?php esc_html_e( 'Find Snippet', 'wpcoder' ); ?>
35 + </a>
28 36 </div>
29 37
30 38 </div>
31 39
@@ -33,8 +41,10 @@
33 41 <?php
34 42 $list_table->search_box( esc_attr__( 'Search', 'wpcoder' ), WPCoder::PREFIX );
35 43 $list_table->display();
36 44 ?>
37 - <input type="hidden" name="page" value="<?php echo sanitize_text_field( $_REQUEST['page'] ); ?>"/>
38 - <?php wp_nonce_field( WPCoder::PREFIX . '_nonce', WPCoder::PREFIX . '_list_action' ); ?>
45 + <input type="hidden" name="page" value="<?php
46 + echo sanitize_text_field( $_REQUEST['page'] ); ?>"/>
47 + <?php
48 + wp_nonce_field( WPCoder::PREFIX . '_nonce', WPCoder::PREFIX . '_list_action' ); ?>
39 49 </form>
40 50 <?php