Version Description
- Compatibility check with WP 4.9
- Added new graphics for WP.org
Download this release
Release Info
Developer | wpis |
Plugin | Title Remover |
Version | 1.1 |
Comparing to | |
See all releases |
Code changes from version 1.0 to 1.1
- readme.txt +9 -5
- title-remover.php +5 -7
readme.txt
CHANGED
@@ -1,10 +1,10 @@
|
|
1 |
=== Title Remover ===
|
2 |
-
Contributors:
|
3 |
Tags: title, page title, post title, hide title, remove title, metaboxes, title remover
|
4 |
-
Donate link: http://
|
5 |
Requires at least: 2.5
|
6 |
-
Tested up to:
|
7 |
-
Stable tag: 1.
|
8 |
License: License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
@@ -27,4 +27,8 @@ Some advantages of using this plugin:
|
|
27 |
|
28 |
== Changelog ==
|
29 |
= 1.0 =
|
30 |
-
* Initial release
|
|
|
|
|
|
|
|
1 |
=== Title Remover ===
|
2 |
+
Contributors: wpgurus
|
3 |
Tags: title, page title, post title, hide title, remove title, metaboxes, title remover
|
4 |
+
Donate link: http://wpgurus.net/title-remover/
|
5 |
Requires at least: 2.5
|
6 |
+
Tested up to: 4.9
|
7 |
+
Stable tag: 1.1
|
8 |
License: License: GPLv2 or later
|
9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
10 |
|
27 |
|
28 |
== Changelog ==
|
29 |
= 1.0 =
|
30 |
+
* Initial release
|
31 |
+
|
32 |
+
= 1.1 =
|
33 |
+
* Compatibility check with WP 4.9
|
34 |
+
* Added new graphics for WP.org
|
title-remover.php
CHANGED
@@ -1,11 +1,11 @@
|
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Title Remover
|
4 |
-
Plugin URI: http://
|
5 |
Description: Gives you the ability to hide the title of any post, page or custom post type item without affecting menus or titles in the admin area.
|
6 |
-
Version: 1.
|
7 |
-
Author:
|
8 |
-
Author URI: http://
|
9 |
License: GPL2
|
10 |
*/
|
11 |
|
@@ -74,6 +74,4 @@ function wptr_save_meta( $post_id, $post ) {
|
|
74 |
/* Get the posted data and sanitize it for use as an HTML class. */
|
75 |
$form_data = ( isset( $_POST['wptr-hide-title-checkbox'] ) ? $_POST['wptr-hide-title-checkbox'] : '0' );
|
76 |
update_post_meta( $post_id, 'wptr_hide_title', $form_data );
|
77 |
-
}
|
78 |
-
|
79 |
-
?>
|
1 |
<?php
|
2 |
/*
|
3 |
Plugin Name: Title Remover
|
4 |
+
Plugin URI: http://wpgurus.net/title-remover/
|
5 |
Description: Gives you the ability to hide the title of any post, page or custom post type item without affecting menus or titles in the admin area.
|
6 |
+
Version: 1.1
|
7 |
+
Author: WPGurus
|
8 |
+
Author URI: http://wpgurus.net/
|
9 |
License: GPL2
|
10 |
*/
|
11 |
|
74 |
/* Get the posted data and sanitize it for use as an HTML class. */
|
75 |
$form_data = ( isset( $_POST['wptr-hide-title-checkbox'] ) ? $_POST['wptr-hide-title-checkbox'] : '0' );
|
76 |
update_post_meta( $post_id, 'wptr_hide_title', $form_data );
|
77 |
+
}
|
|
|
|