PluginProbe
Hide/Remove Metadata / 1.2
Hide/Remove Metadata v1.2
trunk 1.0.0 1.0.1 1.1 1.2 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 2.0 2.1
hide-metadata / partials / admin-display.php

admin-display.php in Hide/Remove Metadata 1.2, at partials/admin-display.php

83 lines 5.9 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Provide a admin area view for the plugin
5 *
6 * This file is used to markup the admin-facing aspects of the plugin.
7 *
8 * @link www.catchplugins.com
9 * @since 1.0.0
10 *
11 * @package Hide_Metadata
12 * @subpackage Hide_Metadata/admin/partials
13 */
14 ?>
15
16 <!-- This file should primarily consist of HTML with a little bit of PHP. -->
17 <div class="wrap">
18 <h1 class="wp-heading-inline"><?php esc_html_e( 'Hide/Remove Metadata', 'hide-metadata' );?></h1>
19 <div id="plugin-description">
20 <p><?php esc_html_e( 'Hide/Remove Metadata is a free, simple yet extremely handy WordPress plugin that helps you hide author and published date either by CSS or PHP from your website effortlessly.', 'hide-metadata' ); ?></p>
21 </div>
22 <div class="catchp-content-wrapper">
23 <div class="catchp_widget_settings">
24 <form id="sticky-main" method="post" action="options.php">
25 <h2 class="nav-tab-wrapper">
26 <a class="nav-tab nav-tab-active" id="dashboard-tab" href="#dashboard"><?php esc_html_e( 'Dashboard', 'hide-metadata' ); ?></a>
27 <a class="nav-tab" id="features-tab" href="#features"><?php esc_html_e( 'Features', 'hide-metadata' ); ?></a>
28
29 </h2>
30 <div id="dashboard" class="wpcatchtab nosave active">
31 <?php require_once plugin_dir_path( dirname( __FILE__ ) ) . 'partials/dashboard-display.php';?>
32
33 </div><!---dashboard---->
34
35 <div id="features" class="wpcatchtab save">
36 <div class="content-wrapper col-3">
37 <div class="header">
38 <h3><?php esc_html_e( 'Features', 'hide-metadata' );?></h3>
39 </div><!-- .header -->
40 <div class="content">
41 <ul class="catchp-lists">
42 <li>
43 <strong><?php esc_html_e( 'Hide or Remove Metadata', 'hide-metadata' ); ?></strong>
44 <p><?php esc_html_e( 'With Hide/Remove Metadata plugin, you have the freedom to either hide the author and published date or remove them completely. To partially hide the information, select CSS and to completely remove them, select PHP. By selecting and hiding through CSS, one can simply get the information with the Inspect tool. However, with PHP, the information would completely be removed, even the Inspect tool would not display the author or published date information.', 'hide-metadata' ); ?></p>
45 </li>
46
47 <li>
48 <strong><?php esc_html_e( 'Hide Author', 'hide-metadata' ); ?></strong>
49 <p><?php esc_html_e( 'If you want to hide the author of your blog, simply turn on the Hide Author option. It depends on the previous customization option if the author information would be just hidden or completely removed.', 'hide-metadata' ); ?></p>
50 </li>
51 <li>
52 <strong><?php esc_html_e( 'Hide Published Date', 'hide-metadata' ); ?></strong>
53 <p><?php esc_html_e( 'Turn on the Hide Published Date option if you want to hide the published date of articles. This option is handy when it comes to evergreen articles, articles that are never outdated.', 'hide-metadata' ); ?></p>
54 </li>
55 <li>
56 <strong><?php esc_html_e( 'Lightweight', 'hide-metadata' ); ?></strong>
57 <p><?php esc_html_e( 'Hide/Remove Metadata is an expedient WordPress plugin to hide or remove author and published date that is extremely lightweight. It means you will not have to worry about your website getting slower because of the plugin.', 'hide-metadata' ); ?></p>
58 </li>
59 <li>
60 <strong><?php esc_html_e( 'Responsive Design', 'hide-metadata' ); ?></strong>
61 <p><?php esc_html_e( 'Our new plugin comes with a responsive design, therefore, there is no need to strain about the plugin breaking your website.', 'hide-metadata' ); ?></p>
62 </li>
63 <li>
64 <strong><?php esc_html_e( 'Compatible with all WordPress Themes', 'hide-metadata' ); ?></strong>
65 <p><?php esc_html_e( 'Gutenberg Compatibility is one of the major concerns nowadays for every plugin developer. Our new Hide/Remove Metadata plugin has been crafted in a way that supports all the WordPress themes. The plugin functions smoothly on any WordPress theme.', 'hide-metadata' ); ?></p>
66 </li>
67 <li>
68 <strong><?php esc_html_e( 'Incredible Support', 'hide-metadata' ); ?></strong>
69 <p><?php esc_html_e( 'Hide/Remove Metadata comes with Incredible Support. Our plugin documentation answers most questions about using the plugin.  If you’re still having difficulties, you can post it in our Support Forum.', 'hide-metadata' ); ?></p>
70 </li>
71 </ul>
72
73 </div><!-- .content -->
74 </div><!-- content-wrapper -->
75 </div> <!-- Featured -->
76 </form><!-- sticky-main -->
77 </div><!-- .catchp_widget_settings -->
78 <?php require_once plugin_dir_path(dirname(__FILE__) ) .'/partials/sidebar.php';?>
79 </div><!---catch-content-wrapper---->
80 <?php require_once plugin_dir_path( dirname( __FILE__ ) ) . '/partials/footer.php'; ?>
81 </div><!-- .wrap -->
82
83