shortcodely-v1.0.0/shortcodely.php 1 location
|
@@ 441-449 (lines=9) @@
|
| 438 |
|
|
| 439 |
|
add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'shortcodely_add_action_links'); |
| 440 |
|
|
| 441 |
|
function shortcodely_add_action_links($links) |
| 442 |
|
{ |
| 443 |
|
$mylinks[] = |
| 444 |
|
'<a title="Haven\'t read the instructions? Need your hand held?" href="' . admin_url('options-general.php?page=shortcodely_saw') . '">Settings</a>'; |
| 445 |
|
$mylinks[] = |
| 446 |
|
'<a title="Yes I know it is the same link, but some people ...." href="' . admin_url('options-general.php?page=shortcodely_saw') . '">HELP</a>'; |
| 447 |
|
|
| 448 |
|
return array_merge($links, $mylinks); |
| 449 |
|
} |
| 450 |
|
|
shortcodely.php 1 location
|
@@ 441-449 (lines=9) @@
|
| 438 |
|
|
| 439 |
|
add_filter('plugin_action_links_' . plugin_basename(__FILE__), 'shortcodely_add_action_links'); |
| 440 |
|
|
| 441 |
|
function shortcodely_add_action_links($links) |
| 442 |
|
{ |
| 443 |
|
$mylinks[] = |
| 444 |
|
'<a title="Haven\'t read the instructions? Need your hand held?" href="' . admin_url('options-general.php?page=shortcodely_saw') . '">Settings</a>'; |
| 445 |
|
$mylinks[] = |
| 446 |
|
'<a title="Yes I know it is the same link, but some people ...." href="' . admin_url('options-general.php?page=shortcodely_saw') . '">HELP</a>'; |
| 447 |
|
|
| 448 |
|
return array_merge($links, $mylinks); |
| 449 |
|
} |
| 450 |
|
|