From 4f2093023b3ca0221540521f1adcb7f4d5df3b08 Mon Sep 17 00:00:00 2001 From: Erick Hitter <ehitter@gmail.com> Date: Tue, 25 Feb 2014 21:16:48 -0800 Subject: [PATCH] More capital_P_dangit() --- README.md | 8 ++++---- wp-redis-cache/options.php | 14 +++++++------- 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/README.md b/README.md index 2c03f3b..e37b8a7 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,4 @@ -## Wp Redis Cache +## WP Redis Cache Cache WordPress using Redis, the fastest way to date to cache WordPress. @@ -43,11 +43,11 @@ We do this because WordPress is no longer in charge of displaying our posts. Re ### Benchmark ------ -I welcome you to compare the page load times of this caching system with other popular Caching plugins such as [Wp Super Cache](http://wordpress.org/plugins/wp-super-cache/) and [W3 Total Cache](http://wordpress.org/plugins/w3-total-cache/) +I welcome you to compare the page load times of this caching system with other popular Caching plugins such as [WP Super Cache](http://wordpress.org/plugins/wp-super-cache/) and [W3 Total Cache](http://wordpress.org/plugins/w3-total-cache/) With a fresh WordPress install: -Wp Super Cache +WP Super Cache ``` Page generated in 0.318 seconds. ``` @@ -57,7 +57,7 @@ W3 Total Cache Page generated in 0.30484 seconds. ``` -Wp Redis Cache +WP Redis Cache ``` Page generated in 0.00902 seconds. ``` diff --git a/wp-redis-cache/options.php b/wp-redis-cache/options.php index 48a5da0..27f1809 100644 --- a/wp-redis-cache/options.php +++ b/wp-redis-cache/options.php @@ -1,6 +1,6 @@ <?php /* -Plugin Name: Wp Redis Cache +Plugin Name: WP Redis Cache Plugin URI: https://github.com/BenjaminAdams/wp-redis-cache Version: 1.0 Author: Benjamin Adams @@ -9,7 +9,7 @@ Author URI: http://dudelol.com Cache WordPress using Redis, the fastest way to date to cache WordPress. == Description == -## Wp Redis Cache +## WP Redis Cache ------ Cache WordPress using Redis, the fastest way to date to cache WordPress. @@ -49,11 +49,11 @@ We do this because WordPress is no longer in charge of displaying our posts. Re ### Benchmark ------ -I welcome you to compare the page load times of this caching system with other popular Caching plugins such as [Wp Super Cache](http://wordpress.org/plugins/wp-super-cache/) and [W3 Total Cache](http://wordpress.org/plugins/w3-total-cache/) +I welcome you to compare the page load times of this caching system with other popular Caching plugins such as [WP Super Cache](http://wordpress.org/plugins/wp-super-cache/) and [W3 Total Cache](http://wordpress.org/plugins/w3-total-cache/) With a fresh WordPress install: -Wp Super Cache +WP Super Cache ``` Page generated in 0.318 seconds. ``` @@ -63,7 +63,7 @@ W3 Total Cache Page generated in 0.30484 seconds. ``` -Wp Redis Cache +WP Redis Cache ``` Page generated in 0.00902 seconds. ``` @@ -119,13 +119,13 @@ We do this because WordPress is no longer in charge of displaying our posts. Re add_action('admin_menu', 'add_redis_interface'); function add_redis_interface() { - add_options_page('Wp Redis Cache', 'Wp Redis Cache', '8', 'functions', 'edit_redis_options'); + add_options_page('WP Redis Cache', 'WP Redis Cache', '8', 'functions', 'edit_redis_options'); } function edit_redis_options() { ?> <div class='wrap'> - <h2>Wp-Redis Options</h2> + <h2>WP-Redis Options</h2> <form method="post" action="options.php"> <?php wp_nonce_field('update-options') ?> -- GitLab