PluginProbe
Flying Images: Optimize and Lazy Load Images for Faster Page Speed / trunk
Flying Images: Optimize and Lazy Load Images for Faster Page Speed vtrunk
trunk 1.0.0 1.0.1 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.2.4 1.2.5 1.2.6 1.2.7 1.2.8 1.2.9 1.3.0 1.3.1 1.3.2 1.3.3 2.0.0 2.1.0 2.1.1 2.2.0 2.2.1 All 57 releases
nazy-load / shortcuts.php

shortcuts.php in Flying Images: Optimize and Lazy Load Images for Faster Page Speed trunk, at shortcuts.php

14 lines 453 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_images_add_shortcuts($links) {
5 $plugin_shortcuts[] = '<a href="'.admin_url('options-general.php?page=flying-images').'">Settings</a>';
6
7 if (!defined('FLYING_PRESS_VERSION')) {
8 $plugin_shortcuts[] =
9 '<a href="https://flyingpress.com?ref=flying-images" target="_blank" style="color:#3db634;">Get FlyingPress</a>';
10 }
11
12 return array_merge($links, $plugin_shortcuts);
13 }
14