PluginProbe
Flying Scripts: Delay JavaScript to Improve Site Speed & Performance / 1.1.3
Flying Scripts: Delay JavaScript to Improve Site Speed & Performance v1.1.3
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 1.1.3, at shortcuts.php

11 lines 401 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 '<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