PluginProbe
Flying Scripts: Delay JavaScript to Improve Site Speed & Performance / trunk
Flying Scripts: Delay JavaScript to Improve Site Speed & Performance vtrunk
trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.1.3 1.1.4 1.1.5 1.1.6 1.1.7 1.1.8 1.1.9 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4
flying-scripts / shortcuts.php

shortcuts.php in Flying Scripts: Delay JavaScript to Improve Site Speed & Performance trunk, at shortcuts.php

17 lines 492 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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