Skip to content

Latest commit

 

History

History
executable file
·
30 lines (22 loc) · 972 Bytes

File metadata and controls

executable file
·
30 lines (22 loc) · 972 Bytes

ClassicPress Directory Integration Plugin logo

ClassicPress Directory integrator.

Features

  • Plugins and themes from ClassicPress Directory now can update as WP.org plugins.
  • Plugins from ClassicPress Directory now can be installed using the "Install CP Plugins" menu under "Plugins" menu.
  • Themes from ClassicPress Directory now can be installed using the "Install CP Themes" menu under "Appearance" menu.

WP-CLI commands

  • Flush transients: wp cpdi flush

Hooks

apply_filters( "cpdi_images_folder_{$plugin}", string $folder )

Filters the folder where we search for icons and banners. The filtered path is relative to the plugin's directory. Default is /images.

Example:

add_filter(
	'cpdi_images_folder_' . basename( __DIR__ ),
	function ( $source ) {
		return '/assets/images';
	}
);