Plugin Directory

Changeset 1889158


Ignore:
Timestamp:
06/07/2018 07:37:22 PM (8 years ago)
Author:
digitalarbyter
Message:

Minor fixes and improvements and updated the description

Location:
wp-tweaker/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • wp-tweaker/trunk/readme.txt

    r1887746 r1889158  
    1 === WP-Tweaker ===
     1=== WP-Tweaker ===
    22Contributors: digitalarbyter
    33Tags: tweaks, booster, performance, speed, optimisation
    44Requires at least: 4.9.6
    55Tested up to: 4.9.6
     6Requires PHP: 5.5.38
    67License: GPLv3
    78
    8 Optimise 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.
     9Optimize 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.
    910
    1011== 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!
     12WordPress 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
     14With 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
     24All you need to do to control this features/functions is
     251. Install and activate this Plugin
     262. Turn each of the features/functions simply on or off
     27
     28There 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
     30If you have any idea regarding future functions of this plugin, let me know!
    1231
    1332== Installation ==
     
    1736
    1837== Changelog ==
     381.0.1 07.06.18: Did some minor bugfixes and improvements
     39
    19401.0 03.06.18: Initial release
  • wp-tweaker/trunk/wp-tweaker.php

    r1887754 r1889158  
    33defined( 'ABSPATH' ) or die( 'No script kiddies please!' );
    44
    5 /* also read https://codex.wordpress.org/Writing_a_Plugin */
    6 
    75/*
    86
    97Plugin Name: WP-Tweaker
    108
    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.
     9Description: 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.
    1210Version: 1.0
    1311Author: Olli Kluth
     12Author URI:  https://digitalarbyter.de
     13Plugin URI:  https://wordpress.org/plugins/wp-tweaker/
    1414
    1515*/
     
    2626*/
    2727
    28 class WPTweaer_SettingsPage
     28class WPTweaker_SettingsPage
    2929{
    3030    private $wptweaker_options;
     
    332332
    333333if( is_admin() )
    334     $my_settings_page = new WPTweaer_SettingsPage();
     334    $my_settings_page = new WPTweaker_SettingsPage();
    335335?>
Note: See TracChangeset for help on using the changeset viewer.