46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| /**
 | |
|  * Plugin action and row meta links
 | |
|  */
 | |
| if ( ! defined( 'ABSPATH' ) ) {
 | |
| 	exit; // Exit if accessed directly
 | |
| }
 | |
| 
 | |
| /**
 | |
|  * Add plugin_action_links
 | |
|  */
 | |
| function bodhi_svgs_plugin_action_links( $links ) {
 | |
| 
 | |
| 	return array_merge(
 | |
| 
 | |
| 		array(
 | |
| 			'<a href="' . admin_url( 'options-general.php?page=svg-support' ) . '" title="' . __( 'SVG Support Settings', 'svg-support' ) . '">' . __( 'Settings', 'svg-support') . '</a>'
 | |
| 		), $links
 | |
| 	);
 | |
| 
 | |
| 	return $links;
 | |
| 
 | |
| }
 | |
| add_filter( 'plugin_action_links_' . $plugin_file, 'bodhi_svgs_plugin_action_links' );
 | |
| 
 | |
| /**
 | |
|  * Add plugin_row_meta links
 | |
|  */
 | |
| function bodhi_svgs_plugin_meta_links( $links, $file ) {
 | |
| 
 | |
| 	$plugin_file = 'svg-support/svg-support.php';
 | |
| 	if ( $file == $plugin_file ) {
 | |
| 		return array_merge(
 | |
| 			$links,
 | |
| 			array(
 | |
| 				'<a target="_blank" href="https://wordpress.org/support/plugin/svg-support">' . __( 'Get Support', 'svg-support') . '</a>',
 | |
| 				'<a target="_blank" href="https://wordpress.org/support/plugin/svg-support/reviews/">' . __( 'Leave a Review', 'svg-support' ) . '</a>',
 | |
| 				'<a target="_blank" href="https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=Z9R7JERS82EQQ&source=url">' . __( 'Donate to author', 'svg-support') . '</a>'
 | |
| 			)
 | |
| 		);
 | |
| 	}
 | |
| 
 | |
| 	return $links;
 | |
| 
 | |
| }
 | |
| add_filter( 'plugin_row_meta', 'bodhi_svgs_plugin_meta_links', 10, 2 ); |