WP Meta and Date Remover - Version 1.0.0

Version Description

Download this release

Release Info

Developer prasadkirpekar
Plugin Icon 128x128 WP Meta and Date Remover
Version 1.0.0
Comparing to
See all releases

Version 1.0.0

Hello-world-after.png ADDED
Binary file
Hello-world-before.png ADDED
Binary file
admin/wp_meta_remove_admin_page.php ADDED
@@ -0,0 +1,25 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+
2
+ <div class="wrap">
3
+ <h1>Hide meta. Its easy!</h1>
4
+ <h4>Follow the instructions to remove your meta</h4>
5
+ <br>So,Plugin dont worked for you? It is because your theme is not standard WordPress theme
6
+ <br>Dont worry i will guide you to remove your meta data.
7
+ <br>WordPress posts are get printed on screen vai theme files like sigle.php,entry.php,page.php etc
8
+ <br>These files are included with some lines of code which call meta information to be get printed
9
+ <br>along with post content.We need to find out that code and erase.
10
+ <h3>Lets do it</h3>
11
+ Go to your theme editor. Usualy Appearance > editor.
12
+ <br>There you will see full list of your active theme files on right side and style.css loaded in
13
+ <br>editor on left side.
14
+ <br><h4>Open following files and look for code which is included with line <strong>class="entry-meta"</strong> </h4>
15
+ <ul>
16
+ <li>singe.php</li>
17
+ <li>content.php (And all its related files like content-page.php,content-none.php)</li>
18
+ <li>entry.php (If available)</li>
19
+ <li>page.php</li>
20
+ </ul>
21
+ Erase that whole code block which included that line,save files and reload page and see effect <strong>Meta is gone</strong>
22
+ <br><h2><a href="http://practicalprogrammers.net/wp-meta-and-date-remover-feedback">Give us feedback </a>and help us to make this plugin better. It takes less than 10 seconds</h1>
23
+ <br><h2><span style="color: #0000ff;">Didn't Worked? <a href="http://practicalprogrammers.net/contact-us">Tell me</a> i will edit your theme.</span></h2>
24
+ <br><h2>Also consider giving a <a href="http://practicalprogrammers.net/wp-meta-and-date-remover-feedback">feedback.</a> it takes only few seconds </h2>
25
+ </div>
css/new-meta-style-sheet.css ADDED
@@ -0,0 +1,18 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ /* Remove meta from post */
2
+ .entry-meta {
3
+ display:none !important;
4
+ }
5
+
6
+ /* Remove meta from home page */
7
+ .home .entry-meta {
8
+ display: none;
9
+ }
10
+ /* WPTheme 2015 Metadata Removal */
11
+ .entry-footer {
12
+ display:none !important;
13
+ }
14
+
15
+ /* WPTheme 2015 Metadata Removal */
16
+ .home .entry-footer {
17
+ display: none;
18
+ }
readme.txt ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === WP Meta and date remover ===
2
+ Contributors: Prasad Kirpekar
3
+ Donate link: -
4
+ Tags: free,theme,meta,date,author, website, posts, pages, metadata, post, home page, remover, entry-meta, css,front page
5
+ Requires at least: 3.0.1
6
+ Tested up to: 4.2
7
+ Stable tag: 1.0.0
8
+ License: GPLv2
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ Remove meta information from posts and pages. Just plug and play.
12
+
13
+ == Description ==
14
+
15
+ WP Meta and date remover can removes Author name,Date and other information from pages and posts.Plugin works on every standard WP theme including 2011 to 2015. Plugin also includes simple guide which works for every non standard WP theme.Plugin also includes simple guide which works for every non standard WP theme.
16
+ == Installation ==
17
+
18
+ 1. Install the plugin from the plugins directory, or upload the wp-meta-and-date-remove folder to the `/wp-content/plugins/` directory.
19
+ 2. Activate the plugin through the 'Plugins' menu in WordPress
20
+
21
+
22
+ == Contact me ==
23
+ http://practicalprogrammers.net/contact-us OR http://facebook.com/kirpekar1
24
+ == Frequently Asked Questions ==
25
+
26
+ = Meta data is still present even after activation.
27
+
28
+ Plugin dont work on non standard WP theme.We included simple guide inside the plugin. You can follow the guide to remove meta from your favorite theme.
29
+
30
+
31
+ == Screenshots ==
32
+
33
+ 1. Hello-world-before.png
34
+ 2. Hello-world-after.png
35
+
36
+ == Changelog ==
37
+
38
+
wp-meta-and-date-remove.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ /* Copyright 2015 Prasad Kirepkar
3
+
4
+ This program is free software; you can redistribute it and/or modify
5
+ it under the terms of the GNU General Public License as published by
6
+ the Free Software Foundation; either version 2 of the License, or
7
+ (at your option) any later version.
8
+
9
+ This program is distributed in the hope that it will be useful,
10
+ but WITHOUT ANY WARRANTY; without even the implied warranty of
11
+ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12
+ GNU General Public License for more details.
13
+
14
+ You should have received a copy of the GNU General Public License
15
+ along with this program; if not, write to the Free Software
16
+ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17
+
18
+ Plugin Name: WP Meta and date remover
19
+ Plugin URI: http://www.practicalprogrammers.net/wp-meta-remove-plugin
20
+ Description: WP Meta and date remover can removes Author name,Date and other information from pages and posts.Plugin works on every standard WP theme including 2011 to 2015. Plugin also includes simple guide which works for every non standard WP theme.
21
+ Version: 1.0.0
22
+ Author: Prasad Kirepkar
23
+ Author URI: http://facebook.com/kirpekar1
24
+ License: GPL v2
25
+ */
26
+ add_action('admin_menu','wp_aadr_admin_actions');
27
+ add_action('wp_head', 'remove_meta');
28
+
29
+ function wp_aadr_admin_actions()
30
+ {
31
+ add_options_page("Meta-remove guide", "Meta-remove guide", 1, "wp-meta-remove-guide","wp_aadr_admin" );
32
+ }
33
+ function wp_aadr_admin()
34
+ {
35
+ include('admin/wp_meta_remove_admin_page.php');
36
+ }
37
+ function remove_meta()
38
+ {
39
+ /* Register style css. */
40
+ wp_enqueue_style( 'remove-meta', plugins_url( 'css/new-meta-style-sheet.css', __FILE__ ), false, '1.0', 'all' );
41
+ }
42
+