wp_cache_plugin_actions()WPSCache 1.0

No Hooks.

Return

null. Nothing (null).

Usage

wp_cache_plugin_actions( $links, $file );
$links (required)
-
$file (required)
-

wp_cache_plugin_actions() code WPSCache 1.11.0

function wp_cache_plugin_actions( $links, $file ) {
	if( $file == 'wp-super-cache/wp-cache.php' && function_exists( 'admin_url' ) ) {
		$settings_link = '<a href="' . admin_url( 'options-general.php?page=wpsupercache' ) . '">' . __( 'Settings', 'wp-super-cache' ) . '</a>';
		array_unshift( $links, $settings_link ); // before other links
	}
	return $links;
}