Changeset 1889158
- Timestamp:
- 06/07/2018 07:37:22 PM (8 years ago)
- Location:
- wp-tweaker/trunk
- Files:
-
- 2 edited
-
readme.txt (modified) (2 diffs)
-
wp-tweaker.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-tweaker/trunk/readme.txt
r1887746 r1889158 1 === WP-Tweaker ===1 === WP-Tweaker === 2 2 Contributors: digitalarbyter 3 3 Tags: tweaks, booster, performance, speed, optimisation 4 4 Requires at least: 4.9.6 5 5 Tested up to: 4.9.6 6 Requires PHP: 5.5.38 6 7 License: GPLv3 7 8 8 Optimi se the performance of your WordPress installation by simply disabling unneeded WordPress-functions. All you have to do is switch them off in the WP Tweaker Panel.9 Optimize the performance of your WordPress installation by simply disabling unneeded WordPress-functions. All you have to do is switch them off in the WP Tweaker Panel. 9 10 10 11 == Description == 11 WordPress automatically provides some features that not every blogger really needs. And you shouldn\'t have to carry around things you don\'t need. From a performance point of view, it makes absolute sense to completely deactivate unnecessary functions. The loading times of your blog will definitely improve noticeably! 12 WordPress automatically provides some features that not every blogger really needs. And you shouldn't have to carry around things you don't need. From a performance point of view, it makes absolute sense to completely deactivate unnecessary functions. The loading times of your blog will definitely improve noticeably! 13 14 With this WP-Tweaker you can controll the following functions/features of WordPress: 15 - Remove your WP-Version from the header 16 - Deactivate the WP-Emojis 17 - Remove the WP-Manifest 18 - Remove the RSD-Link 19 - Remove the RSS-Links 20 - Remove the Shortlink 21 - Remove links to adjacent posts 22 - Limit the stored Post-Revisions to a maximum of 5 23 24 All you need to do to control this features/functions is 25 1. Install and activate this Plugin 26 2. Turn each of the features/functions simply on or off 27 28 There are more features for this plugin to come. Most of them are already in the pipeline for production. As of now there are already 12 new functions/feature in my backlog. 29 30 If you have any idea regarding future functions of this plugin, let me know! 12 31 13 32 == Installation == … … 17 36 18 37 == Changelog == 38 1.0.1 07.06.18: Did some minor bugfixes and improvements 39 19 40 1.0 03.06.18: Initial release -
wp-tweaker/trunk/wp-tweaker.php
r1887754 r1889158 3 3 defined( 'ABSPATH' ) or die( 'No script kiddies please!' ); 4 4 5 /* also read https://codex.wordpress.org/Writing_a_Plugin */6 7 5 /* 8 6 9 7 Plugin Name: WP-Tweaker 10 8 11 Description: This slim plugin removes many (unneeded) standard features from WordPress to give your blog the ultimate performance boost! Currently you can disable 8 WordPress functions with one mouse click.9 Description: This slim plugin removes many (unneeded) standard features from WordPress to give your blog the ultimate performance boost! Currently you can disable 8 WordPress functions each with one mouse click. 12 10 Version: 1.0 13 11 Author: Olli Kluth 12 Author URI: https://digitalarbyter.de 13 Plugin URI: https://wordpress.org/plugins/wp-tweaker/ 14 14 15 15 */ … … 26 26 */ 27 27 28 class WPTwea er_SettingsPage28 class WPTweaker_SettingsPage 29 29 { 30 30 private $wptweaker_options; … … 332 332 333 333 if( is_admin() ) 334 $my_settings_page = new WPTwea er_SettingsPage();334 $my_settings_page = new WPTweaker_SettingsPage(); 335 335 ?>
Note: See TracChangeset
for help on using the changeset viewer.