add_settings_page( array( 'parent' => 'options-general.php', 'page_title' => 'Attention Grabber', 'menu_title' => 'Attention Grabber', 'capability' => 'manage_options', 'settings_link' => true ) ); function plugin_add_settings_link( $links ) { $settings_link = 'Settings'; array_unshift( $links, $settings_link ); return $links; } $plugin = plugin_basename( __FILE__ ); add_filter( "plugin_action_links_$plugin", 'plugin_add_settings_link' ); // Include plugin actions require_once 'inc/plugin-actions.php'; // Make plugin meta translatable __( 'Author Name', $sunrise->textdomain ); __( 'Conversion Insights, Inc.', $sunrise->textdomain ); __( "The Attention Grabber is designed to make sure all your visitors know about the things most important to you. Grab your visitor’s attention and get them to sign up for your email list, or tell them about a specific page they should visit.", $sunrise->textdomain ); ?>