wp_skip_paused_plugins( array $plugins )
Filters a given list of plugins, removing any paused plugins from it.
Description Description
Parameters Parameters
- $plugins
-
(array) (Required) List of absolute plugin main file paths.
Return Return
(array) Filtered value of $plugins, without any paused plugins.
Source Source
File: wp-includes/load.php
function wp_skip_paused_plugins( array $plugins ) { $paused_plugins = wp_paused_plugins()->get_all(); if ( empty( $paused_plugins ) ) { return $plugins; } foreach ( $plugins as $index => $plugin ) { list( $plugin ) = explode( '/', plugin_basename( $plugin ) ); if ( array_key_exists( $plugin, $paused_plugins ) ) { unset( $plugins[ $index ] ); // Store list of paused plugins for displaying an admin notice. $GLOBALS['_paused_plugins'][ $plugin ] = $paused_plugins[ $plugin ]; } } return $plugins; }
Expand full source code Collapse full source code View on Trac
Changelog Changelog
Version | Description |
---|---|
5.2.0 | Introduced. |