Created
May 23, 2019 12:40
-
-
Save Russkazkin/8ed31191b5b7c7694a0478b43719405a to your computer and use it in GitHub Desktop.
Plugin Link
This file contains 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
add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'plugin_page_settings_link'); | |
function plugin_page_settings_link($links) { | |
$links[] = '<a href="' . admin_url( 'tools.php?page=suss-submenu' ) . '">' . __('Settings') . '</a>'; | |
return $links; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment