Skip to content

Instantly share code, notes, and snippets.

@ajitbohra
Last active November 17, 2016 11:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ajitbohra/3f53334b74bb459d87df143c300f28ce to your computer and use it in GitHub Desktop.
Save ajitbohra/3f53334b74bb459d87df143c300f28ce to your computer and use it in GitHub Desktop.
Wordpress Generate Plugin Activation Link
<?php
/*
* Generate a Link to Activate a Plugin in WordPress
*/
$path = 'woocommerce/woocommerce.php';
$link = wp_nonce_url(admin_url('plugins.php?action=activate&plugin='.$path), 'activate-plugin_'.$path);
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment