Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@trishasalas
Forked from lloc/gist:5685040
Created July 14, 2016 02:59
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 trishasalas/83015d849a42a230bc3e520ee636bf0e to your computer and use it in GitHub Desktop.
Save trishasalas/83015d849a42a230bc3e520ee636bf0e to your computer and use it in GitHub Desktop.
WordPress - Add link to plugin_row_meta
<?php
define( 'PLUGIN_BASENAME', plugin_basename( __FILE__ ) );
function my_plugin_row_meta( $plugin_meta, $plugin_file, $plugin_data, $status ) {
if ( PLUGIN_BASENAME == $plugin_file )
$plugin_meta[] = '<a href="#">Test: plugin_row_meta</a>';
return $plugin_meta;
}
add_filter( 'plugin_row_meta', 'my_plugin_row_meta', 10, 4 );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment