# flying-scripts/trunk/shortcuts.php

Flying Scripts: Delay JavaScript to Improve Site Speed &amp; Performance, version trunk. 17 lines.

- Page: https://pluginprobe.com/plugins/flying-scripts/trunk/code/shortcuts.php
- Raw: https://pluginprobe.com/plugins/flying-scripts/trunk/raw/shortcuts.php
- Modified: 2024-08-24T02:02:24+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/flying-scripts/trunk/code/shortcuts.php#L10-L20`.

```php
<?php

// Add credit links in plugins list
function flying_scripts_add_shortcuts($links) {
    $plugin_shortcuts = array(
        '<a href="'.admin_url('options-general.php?page=flying-scripts').'">Settings</a>'
    );

    if (!defined('FLYING_PRESS_VERSION')) {
        $plugin_shortcuts[] =
      '<a href="https://flyingpress.com?ref=flying-scripts" target="_blank" style="color:#3db634;">Get FlyingPress</a>';
    }


    return array_merge($links, $plugin_shortcuts);
}

```
