wp_cache_plugin_actions() WPSCache 1.0
No Hooks.
Return
Null. Nothing.
Usage
wp_cache_plugin_actions( $links, $file );
Code of wp_cache_plugin_actions() wp cache plugin actions WPSCache 1.7.1
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;
}