| 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 |
); |
| 8 |
|
| 9 |
if (!defined('FLYING_PRESS_VERSION')) { |
| 10 |
$plugin_shortcuts[] = |
| 11 |
'<a href="https://flyingpress.com?ref=flying-scripts" target="_blank" style="color:#3db634;">Get FlyingPress</a>'; |
| 12 |
} |
| 13 |
|
| 14 |
|
| 15 |
return array_merge($links, $plugin_shortcuts); |
| 16 |
} |
| 17 |
|