Created
August 3, 2015 17:46
-
-
Save rveitch/170878f415d43327116c to your computer and use it in GitHub Desktop.
Add Github repository link to the WordPress plugin description.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| public function set_plugin_meta( $links, $file ) { | |
| static $plugin; | |
| $plugin = plugin_basename( __FILE__ ); | |
| if ( $file == $plugin ) { | |
| $links[] = '<a href="https://gist.github.com/rveitch/170878f415d43327116c">GitHub</a>'; | |
| } | |
| return $links; | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment