PluginProbe
WP Coder – Insert & Manage Code Snippets / 4.3
WP Coder – Insert & Manage Code Snippets v4.3
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 +19 -26 3.44.3 View file →
@@ -15,36 +15,29 @@
15 15 'page' => WPCoder::SLUG . '-settings',
16 16 'action' => 'new'
17 17 ], admin_url( 'admin.php' ) );
18 18 ?>
19 + <div class="wowp">
20 + <?php DashboardInitializer::header(); ?>
19 21
20 - <div class="wowp-header-wrapper">
21 - <?php
22 - DashboardInitializer::header(); ?>
23 -
24 - <div class="wowp-header-title">
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' ); ?>
22 + <div class="wowp-page-header">
23 + <h2 class="wowp-page-header__title">
24 + <?php esc_html_e( 'All Codes', 'wp-coder' ); ?>
25 + </h2>
26 + <a href="<?php echo esc_url( $add_url ); ?>" class="button button-primary button-large">
27 + <?php esc_html_e( 'Add New', 'wp-coder' ); ?>
31 28 </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>
36 29 </div>
37 30
31 +
32 + <form method="post" class="wowp-list">
33 + <?php
34 + $list_table->search_box( esc_attr__( 'Search', 'wp-coder' ), WPCoder::PREFIX );
35 + $list_table->display();
36 + ?>
37 + <input type="hidden" name="page" value="<?php echo esc_attr( $_REQUEST['page'] ); ?>"/>
38 + <?php wp_nonce_field( WPCoder::PREFIX . '_nonce', WPCoder::PREFIX . '_list_action' ); ?>
39 + </form>
40 +
38 41 </div>
42 +<?php
39 43
40 - <form method="post" class="wowp-list">
41 - <?php
42 - $list_table->search_box( esc_attr__( 'Search', 'wpcoder' ), WPCoder::PREFIX );
43 - $list_table->display();
44 - ?>
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' ); ?>
49 - </form>
50 -<?php