Data
###Test One low concurrency
Complete requests: 100
Concurrency Level: 5
HTML transferred: 1805700 bytes
Slowest to fastest
| <?php | |
| add_filter( 'sidebars_widgets', 'gmj_shuffle_widgets' ); | |
| /** | |
| * Shuffle ranges of widgets within a sidebar. | |
| * | |
| * Hat-tip to {@link http://gmj.to/op} for the original idea. | |
| * | |
| * @uses gmj_do_shuffle_widgets() Does the actual array manipulation. | |
| * |
| # BEGIN WordPress | |
| <IfModule mod_rewrite.c> | |
| RewriteEngine On | |
| RewriteBase / | |
| RewriteRule ^index\.php$ - [L] | |
| RewriteCond %{REQUEST_FILENAME} !-f | |
| RewriteCond %{REQUEST_FILENAME} !-d | |
| RewriteRule . /index.php [L] | |
| </IfModule> |
| <?php | |
| $attachments = get_children( | |
| array( | |
| 'numberposts' => 1, | |
| 'order'=> 'ASC', | |
| 'post_mime_type' => 'image', | |
| 'post_parent' => get_the_ID(), | |
| 'post_status' => null, | |
| 'post_type' => 'attachment' |
| <?php | |
| /* | |
| Plugin Name: Placekitten | |
| Description: Shortcode [placekitten w=100 h=300 g=1 alt=kitten] and action. | |
| Version: 1.0 | |
| Author: Thomas Scholz | |
| Author URI: http://toscho.de | |
| License: GPL | |
| */ |
| <?php | |
| function phonetic_fools($content){ | |
| $pieces = str_split($content); | |
| foreach ($pieces as $piece => $noise) { | |
| $fools = metaphone($noise); | |
| $str = strtolower($fools); |
| <?php | |
| /* | |
| Plugin Name: Kill Trackbacks | |
| Plugin URI: http://pmg.co/category/wordpress | |
| Description: Kill all trackbacks on WordPress | |
| Version: 1.0 | |
| Author: Christopher Davis | |
| Author URI: http://pmg.co/people/chris | |
| */ |
| <?xml version="1.0" encoding="UTF-8"?> | |
| <scheme name="Monokai-Custom" version="1" parent_scheme="Default"> | |
| <option name="LINE_SPACING" value="1.0" /> | |
| <option name="EDITOR_FONT_SIZE" value="16" /> | |
| <option name="EDITOR_FONT_NAME" value="Consolas" /> | |
| <colors> | |
| <option name="CARET_COLOR" value="f8f8f0" /> | |
| <option name="CARET_ROW_COLOR" value="3e3d32" /> | |
| <option name="CONSOLE_BACKGROUND_KEY" value="272822" /> | |
| <option name="GUTTER_BACKGROUND" value="272822" /> |
| <?php | |
| /** | |
| * Plugin Name: (#81791) Dump cURL Request & Response | |
| * Author: Franz Josef Kaiser | |
| */ | |
| add_action( 'plugins_loaded', array( 'WPSE81791_cURL', 'init' ) ); | |
| class WPSE81791_cURL | |
| { | |
| protected static $instance; |
| <?php | |
| /** | |
| * | |
| * This removes the ability to add the FULL image size into a post, it does not alter or delete the image | |
| * Add whataever extra image sizes to the insert dropdown in WordPress you create via add_image_size | |
| * | |
| * For now we have to do it this way to make the labels translatable, see trac ref below. | |
| * | |
| * If your theme has $content_width GLOBAL make sure and remove it |
Data
###Test One low concurrency
Complete requests: 100
Concurrency Level: 5
HTML transferred: 1805700 bytes
Slowest to fastest