| 1 |
<?php |
| 2 |
|
| 3 |
// Add credit links in plugins list |
| 4 |
function flying_scripts_add_shortcuts($links) { |
| 5 |
$plugin_shortcuts = array( |
| 6 |
'<a href="'.admin_url('options-general.php?page=flying-scripts').'">Settings</a>', |
| 7 |
'<a href="https://www.buymeacoffee.com/gijovarghese" target="_blank" style="color:#3db634;">Buy developer a coffee</a>' |
| 8 |
); |
| 9 |
return array_merge($links, $plugin_shortcuts); |
| 10 |
} |
| 11 |
|