' . __( 'Settings', 'svg-support') . ''
), $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(
'' . __( 'Get Support', 'svg-support') . '',
'' . __( 'Leave a Review', 'svg-support' ) . '',
'' . __( 'Donate to author', 'svg-support') . ''
)
);
}
return $links;
}
add_filter( 'plugin_row_meta', 'bodhi_svgs_plugin_meta_links', 10, 2 );