WP Meta and Date Remover - Version 1.2.2

Version Description

Download this release

Release Info

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

Code changes from version 1.2.0 to 1.2.2

admin/options.php CHANGED
@@ -1,8 +1,13 @@
1
-
2
  <div class='wrap'>
3
- <h2>WP meta and Date Remover<span style="float:right;text-decoration:underline;"><a href="https://www.fiverr.com/prasadkirpekar/customize-your-theme-css">Buy Premium support</a></span></h2>
 
 
 
 
 
 
4
 
5
- <form method='post' action=<?php echo $action_url ?>>
6
 
7
  <input type="hidden" name="submitted" value="1" />
8
  <table class="form-table">
@@ -15,15 +20,15 @@
15
  <td><input type="checkbox" value="1" <?php if(get_option('wpmdr_disable_css')=="1") echo "checked='checked'" ;?> name="wpmdr_disable_css"/></td>
16
  </tr>
17
  <tr>
18
- <th>Customize CSS<p>This is CSS used to hide Meta data classes of theme</p></th>
19
- <td><textarea style="width:50%;height:200px;" name='wpmdr_css'><?php echo $css; ?></textarea></td>
20
  </tr>
21
  <tr>
22
  <td><?php submit_button(); ?></td>
23
  <td></td>
24
  </tr>
25
-
26
  </table>
27
  </form>
28
- <p> <a href="https://wordpress.org/support/view/plugin-reviews/wp-meta-and-date-remover?rate=5#postform">Vote up this plugin</a></p>
29
  </div>
 
1
  <div class='wrap'>
2
+ <h2>WP meta and Date Remover<span style="float:right;text-decoration:underline;"><a target="_blank" href="http://bit.ly/2bzAUb6">Buy Premium support</a>
3
+ <br/>
4
+ <a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/wp-meta-and-date-remover?rate=5#postform">Vote up this plugin</a>
5
+ <br/>
6
+ <a href="https://paypal.me/prasadkirpekar">Donate few bucks</a>
7
+ <br/>
8
+ </span></h2>
9
 
10
+ <form method='post' action="<?php echo $action_url ?>">
11
 
12
  <input type="hidden" name="submitted" value="1" />
13
  <table class="form-table">
20
  <td><input type="checkbox" value="1" <?php if(get_option('wpmdr_disable_css')=="1") echo "checked='checked'" ;?> name="wpmdr_disable_css"/></td>
21
  </tr>
22
  <tr>
23
+ <th>Customize CSS<p>This CSS is being used to hide Meta data classes of theme</p></th>
24
+ <td><a target="_blank" href="http://bit.ly/2bzAUb6">I need help to set up this</a><br/><textarea style="width:50%;height:200px;" name='wpmdr_css'><?php echo $css; ?></textarea></td>
25
  </tr>
26
  <tr>
27
  <td><?php submit_button(); ?></td>
28
  <td></td>
29
  </tr>
30
+ <tr><td><a href="http://prasadkirpekar.com/wordpress/wordpress-tutorials/how-to-remove-meta-and-date-from-wordpress-posts-or-pages/" target="_blank">Addtional Text like <i>By</i> or <i>posted by</i> is still visible?</a></td><tr>
31
  </table>
32
  </form>
33
+
34
  </div>
css/new-meta-style-sheet.css DELETED
@@ -1,18 +0,0 @@
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 CHANGED
@@ -1,66 +1,83 @@
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.5
7
- Stable tag: 1.2.0
8
- stable.
9
- License: GPLv3
10
- License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
-
12
- Remove meta author and date information from posts and pages. Hide from Humans and Search engines. Just Install and Activate.
13
-
14
- == Description ==
15
-
16
- WP meta and date remover removes meta information such as Date,time and Author from posts and pages.
17
- This plugin designed to work on almost all thems including standard free thems,bootstrap based themes,premium themes and even themes created by custom drag drop editors.
18
- This plugin uses two methods to erase your meta
19
- <h2>Removal using CSS file</h2>Plugin register custom CSS which hides any information contained by meda data class. CSS file provided with this plugin works great. You also can edit that file in plugin editor. For more support [Buy premium support](https://www.fiverr.com/prasadkirpekar/customize-your-theme-css).<br/>
20
-
21
- <h2>Removal using php</h2>Plugin filters results of functions like get_date(),get_time() etc. In some cases CSS file doesn't work, thats why there is removal using php code. Plugin removes Meta data from source code. Which means even search engines can't see it.
22
-
23
-
24
-
25
- == Contact me ==
26
- https://twitter.com/kirpekarprasad or [email me](mailto:prasadkirpekar@outlook.com)
27
-
28
- == Frequently Asked Questions ==
29
-
30
- = Meta data is still present even after activation.
31
- Follow the [this](https://geekyprogramming.wordpress.com/2015/06/12/wordpress-meta-removal-guide/) link. or Contack me on [twitter] (https://twitter.com/kirpekarprasad) or [email me](mailto:prasadkirpekar@outlook.com).
32
-
33
-
34
- = Search engine showing Meta data even after plugin activation.
35
- Search engines doesn't react to changes instantaly. Search engines will take some time. Resubmit your sitemap in webmaster tools.
36
-
37
-
38
- == Installation ==
39
-
40
- Use built in automatic installer or,
41
-
42
- 1. Copy the plugin folder into /wp-content/plugins
43
- 2. Activate plugin via the plugins page in the WordPress admin
44
- 3. Go to Settings to configure.
45
-
46
-
47
- == Screenshots ==
48
-
49
- 1. Settings Window
50
- 2. Before activation
51
- 3. After activation
52
-
53
- == Changelog ==
54
- 1.2.0
55
-
56
- * Improved both CSS and PHP removal
57
- * Added admin menu page for manual configuration.
58
-
59
- 1.1.0
60
-
61
- * Improved previous css code.
62
- * Added new php based method to filter meta information.
63
-
64
- 1.0.0
65
-
66
- * Initial release with css based meta removal.
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === WP Meta and Date Remover ===
2
+ Contributors: Prasad Kirpekar
3
+ Donate link: - https://paypal.me/prasadkirpekar
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.7
7
+ Stable tag: 1.2.2
8
+ License: GPLv3
9
+ License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
+
11
+ Remove meta author and date information from posts and pages. Hide from Humans and Search engines.SEO friendly and most advance plugin.
12
+
13
+ == Description ==
14
+
15
+ Remove Meta,Author and Date in click. Install. Activate. And Done!
16
+ <h2>How to remove Author Meta and Date from posts and pages?</h2>
17
+
18
+ 1. Install WP Meta and Date remover.
19
+ 2. Activate Plugin.
20
+ 3. Choose whether to hide from Backend(Page Source) or Frontend or Both
21
+ 4. Save settings
22
+ 5. And you done!
23
+
24
+
25
+ <h2>Two way removal</h2>
26
+
27
+ This plugin uses two methods to erase your meta
28
+ <h2>Removal using CSS file</h2>
29
+ Plugin register custom CSS which hides any information contained by meda data class.
30
+ CSS file provided with this plugin works great. You also can edit that n file in plugin editor.
31
+ For more support [Buy premium support](https://www.fiverr.com/prasadkirpekar/customize-your-theme-css)
32
+
33
+ <h2>Removal using php</h2>
34
+ Plugin filters results of functions like get_date(),get_time() etc.
35
+ In some cases CSS file doesn't work, thats why there is removal using php code.
36
+ Plugin removes Meta data from source code. Which means even search engines can't see it.
37
+
38
+ For further help refer [this](http://prasadkirpekar.com/wordpress/wordpress-tutorials/how-to-remove-meta-and-date-from-wordpress-posts-or-pages/) blog post
39
+
40
+ == Contact me ==
41
+ [Reach me here](http://prasadkirpekar.com)
42
+
43
+ == Frequently Asked Questions ==
44
+
45
+ 1. Meta data is still present even after activation.
46
+ Find meta data css class in your theme css and edit css code in settings. You can even main me on prasadkirpekar@outlook.com
47
+ 2. Search engine showing Meta data even after plugin activation.
48
+ Search engines doesn't react to changes instantaly. Search engines will take some time. Resubmit your sitemap in webmaster tools.
49
+
50
+
51
+ == Installation ==
52
+
53
+ Use built in automatic installer or,
54
+
55
+ 1. Copy the plugin folder into /wp-content/plugins
56
+ 2. Activate plugin via the plugins page in the WordPress admin
57
+ 3. Go to Settings to configure.
58
+
59
+
60
+ == Screenshots ==
61
+
62
+ 1. Settings Window
63
+ 2. Before activation
64
+ 3. After activation
65
+
66
+ == Changelog ==
67
+ 1.2.2
68
+ * Minor Improvments
69
+ 1.2.1
70
+ * Minor Improvments.
71
+ 1.2.0
72
+
73
+ * Improved both CSS and PHP removal
74
+ * Added admin menu page for manual configuration.
75
+
76
+ 1.1.0
77
+
78
+ * Improved previous css code.
79
+ * Added new php based method to filter meta information.
80
+
81
+ 1.0.0
82
+
83
+ * Initial release with css based meta removal.
wp-meta-and-date-remover.php CHANGED
@@ -1,13 +1,13 @@
1
  <?php
2
  /*
3
- Plugin Name: WP Meta and date remover
4
- Plugin URI: http://www.practicalprogrammers.net/wp-meta-remove-plugin
5
  Description: Remove Meta information such as Author and Date from posts and pages.
6
- Version: 1.2.0
7
- Author: Prasad Kirepkar
8
  Author URI: http://twitter.com.com/kirpekarprasad
9
  License: GPL v2
10
- Copyright: Prasad Kirepkar
11
 
12
  This program is free software; you can redistribute it and/or modify
13
  it under the terms of the GNU General Public License as published by
@@ -25,12 +25,14 @@ Copyright: Prasad Kirepkar
25
  */
26
 
27
  function extra_links($links){
28
- $fiverr="https://www.fiverr.com/prasadkirpekar/customize-your-theme-css";
 
29
  $setting_link = '<a href="../wp-admin/options-general.php?page=wp-meta-and-date-remover.php">Settings</a>';
30
- $five_star='<a href="https://wordpress.org/support/view/plugin-reviews/wp-meta-and-date-remover?rate=5#postform">Vote up</a>';
31
  array_unshift($links, $setting_link);
32
- array_unshift($links, $five_star);
33
  array_unshift($links, $fiverr);
 
34
  return $links;
35
  }
36
  $plugin = plugin_basename(__FILE__);
1
  <?php
2
  /*
3
+ Plugin Name: WP Meta and Date Remover
4
+ Plugin URI: mailto:prasadkirpekar@outlook.com
5
  Description: Remove Meta information such as Author and Date from posts and pages.
6
+ Version: 1.2.2
7
+ Author: Prasad Kirpekar
8
  Author URI: http://twitter.com.com/kirpekarprasad
9
  License: GPL v2
10
+ Copyright: Prasad Kirpekar
11
 
12
  This program is free software; you can redistribute it and/or modify
13
  it under the terms of the GNU General Public License as published by
25
  */
26
 
27
  function extra_links($links){
28
+ $donate="<a href='https://paypal.me/prasadkirpekar'>Support Development</a>";
29
+ $fiverr="<a href='http://bit.ly/2bzAUb6'>More Customization</a>";
30
  $setting_link = '<a href="../wp-admin/options-general.php?page=wp-meta-and-date-remover.php">Settings</a>';
31
+
32
  array_unshift($links, $setting_link);
33
+
34
  array_unshift($links, $fiverr);
35
+ array_unshift($links,$donate);
36
  return $links;
37
  }
38
  $plugin = plugin_basename(__FILE__);