' . esc_html__( 'Settings', AFFILIATE_PROMOTIONS_PLUG ) . ''; if ( $file == 'affiliate-promotions/affiliate-promotions.php' ) array_unshift( $links, $settings_link ); return $links; } add_filter( 'plugin_action_links', 'affpromos_action_links', 10, 2 ); /** * Plugin row meta links * * @param array $input already defined meta links * @param string $file plugin file path and name being processed * @return array $input */ function affpromos_row_meta( $input, $file ) { if ( $file != 'affiliate-promotions/affiliate-promotions.php' ) return $input; $custom_link = esc_url( add_query_arg( array( 'utm_source' => 'plugins-page', 'utm_medium' => 'plugin-row', 'utm_campaign' => 'Affiliate Promotions', ), 'https://wordpress.org/plugins/affiliate-promotions/' ) ); $links = array( '' . esc_html__( 'Example Link', AFFILIATE_PROMOTIONS_PLUG ) . '', ); $input = array_merge( $input, $links ); return $input; } //add_filter( 'plugin_row_meta', 'affpromos_row_meta', 10, 2 );