Plugin info

Total downloads: 2,662
Active installs: 0
Total reviews: 2
Average rating: 5
Support threads opened: 0
Support threads resolved: 0 (0%)
Available in: 1 language(s)
Contributors: 2
Last updated: 8/24/2015 (3781 days ago)
Added to WordPress: 3/20/2014 (11 years old)
Minimum WordPress version: 3.5
Tested up to WordPress version: 4.3.34
Minimum PHP version: f

Maintenance & Compatibility

Maintenance score

Possibly abandoned • Last updated 3781 days ago • 2 reviews

22/100

Is What's running abandoned?

Possibly abandoned (last update 3781 days ago).

Compatibility

Requires WordPress: 3.5
Tested up to: 4.3.34
Requires PHP: f

Similar & Alternatives

Explore plugins with similar tags, and compare key metrics like downloads, ratings, updates, support, and WP/PHP compatibility.

Debugger
Rating 4.5/5 (2 reviews)Active installs 10
Debug Bar Slow Actions
Rating 4.8/5 (15 reviews)Active installs 200
MySQL Profiler
Rating 4.2/5 (5 reviews)Active installs 10
Simple Debug
Rating 3.0/5 (2 reviews)Active installs 10
WP XHProf Profiler
Rating 5.0/5 (1 reviews)Active installs 10

Description

Only for development!

Now with OPcache memory consumption support

This plugin dumps the colorized filenames and memory consumptions or file sizes after the normal WordPress HTML output, after the closing html tag. This generates invalid HTML but gives you an overview of loaded plugins and the current theme.

What’s running lists all files parsed and executed by the PHP engine. It can be used for plugin or theme refactoring.

Now you can highlight your own plugin and theme

Provide a part of its path in wp-config.php:

define( 'WHATS_RUNNING_HIGHLIGHT', 'wp-content/plugins/my-plugin' ); 

Color codes

  • your code is highlighted with YELLOW background
  • plugin files are in BLUE
  • themes files are in ORANGE
  • files in the wp-includes directory are in GREEN
  • files in the wp-admin directory are in GREY
  • all other files are in RED
  • VIOLET bar after the filename represents the file size ( 0.5 kB/px )
  • DARK MAGENTA bar after the filename represents the OPcache memory consumption ( 1 kB/px )

Links

You can watch WP core bug #28364 to get more information about WordPress entry points.

You can find some documentaion here what makes a WordPress plugin efficient: https://github.com/szepeviktor/WPHW

Development of this plugin goes on on GitHub.

Installation

This section describes how to install the plugin and get it working.

  1. Upload wp-requires.php to the /wp-content/plugins/ directory
  2. Activate the plugin through the ‘Plugins’ menu in WordPress

Frequently Asked Questions

It messes up my backend, frontend!

After finishing the refactor, please deactivate and delete this plugin.

How to highlight my code?

Insert a line into wp-config.php with a part of your files’ path:

define( 'WHATS_RUNNING_HIGHLIGHT', 'wp-content/plugins/my-plugin' ); 

Use in production?

Please do not!

How to switch between file size and memory consumption?

When OPcache status is available memory consumption is displayed, otherwise the file size.

Review feed

No reviews available

Screenshots

  1. This is an old screenshot. You can see the filenames after the admin footer.

    This is an old screenshot. You can see the filenames after the admin footer.

  2. This is the current screenshot of the plugin's output on the Dashboard. The colored bars represent the file sizes.

    This is the current screenshot of the plugin's output on the Dashboard. The colored bars represent the file sizes.

  3. Lines highlighted by the WHATS_RUNNING_HIGHLIGHT constant.

    Lines highlighted by the WHATS_RUNNING_HIGHLIGHT constant.

Changelog

1.9.1

  • FIX: Always display pre tag
  • NEW: Semver

1.9

  • NEW: Added OPcache memory consumption support (DARK MAGENTA bar).

1.8

  • Changed wrapper element to div with id “whats-running”.
  • NEW: Added feature to highlight your code.

1.7

  • NEW: Added size in kB to the title of the file size bars.

1.6

  • NEW Added file sizes and total file size.

1.5

  • NEW: Added inline styles.
  • Link to WP core bug to watch.

1.4

  • FIX: Prevent running on non-AJAX media uploads (async-upload.php).
  • Tested up to WordPress 3.9.

1.3

  • FIX: On file uploads (async-upload.php) DOING_AJAX is defined late.

1.2

  • NEW: Legend for the colors.
  • Now you don’t have to collapse the admin menu.

1.1

  • FIX: Plugin name correction in readme.

1.0

  • Initial release.
  • Colorized output.