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 +17 -14 3.24.3 View file →
@@ -15,26 +15,29 @@
15 15 'page' => WPCoder::SLUG . '-settings',
16 16 'action' => 'new'
17 17 ], admin_url( 'admin.php' ) );
18 18 ?>
19 -
20 - <div class="wowp-header-wrapper">
19 + <div class="wowp">
21 20 <?php DashboardInitializer::header(); ?>
22 21
23 - <div class="wowp-header-title">
24 - <h2><?php esc_html_e( 'All Codes', 'wpcoder' ); ?></h2>
22 + <div class="wowp-page-header">
23 + <h2 class="wowp-page-header__title">
24 + <?php esc_html_e( 'All Codes', 'wp-coder' ); ?>
25 + </h2>
25 26 <a href="<?php echo esc_url( $add_url ); ?>" class="button button-primary button-large">
26 - + <?php esc_html_e( 'Add New', 'wpcoder' ); ?>
27 + <?php esc_html_e( 'Add New', 'wp-coder' ); ?>
27 28 </a>
28 29 </div>
29 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 +
30 41 </div>
42 +<?php
31 43
32 - <form method="post" class="wowp-list">
33 - <?php
34 - $list_table->search_box( esc_attr__( 'Search', 'wpcoder' ), WPCoder::PREFIX );
35 - $list_table->display();
36 - ?>
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' ); ?>
39 - </form>
40 -<?php