WP Manifestindependent plugin directory
manifest / admin / safe-wp-plugins

Safe WP Plugins archived

Allow to install and activate WP plugins that are working on ClassicPress.

by Simone Fioravanti · github.com/xxsimoxx/safe-wp-plugins

0stars
0forks

Install

The author publishes release zips, so WP-CLI can install straight from GitHub:

wp plugin install https://github.com/xxsimoxx/safe-wp-plugins/releases/download/0.0.2/safe-wp-plugins-0.0.2.zip

Readme

Safe WP Plugins

Allow a list of plugins that needs WP > 6.2 to be installed on Classicpress ClassicPress is currently having $wp_version = '6.2.8'.

The "safe" plugin list is build merging:

  • a static list
  • a list prom WP API of plugins tagged "classicpress"

cp_local_safe_wp_plugins hook

This hook is intended to add or remove plugins to the list of those considered working. Use the slug as reported by WP API.

Example usage (notice that those slugs are not supposed to work):

add_filter( 'cp_local_safe_wp_plugins', function( $safe_plugins ) {
    $to_add = array(
        'wp-mail-smtp',
        'wp-super-cache',
    );
    return array_merge( $safe_plugins, $to_add );
});

Read the full README on GitHub →

Releases

TagPublishedAssetDownloads
0.0.2 Dec 19, 2025 safe-wp-plugins-0.0.2.zip 0
0.0.1 Dec 18, 2025 safe-wp-plugins-0.0.1.zip 0