Skip to content

Instantly share code, notes, and snippets.

@drinkmaker
Created November 26, 2015 18:17
Show Gist options
  • Save drinkmaker/ee5795e36970b667504f to your computer and use it in GitHub Desktop.
Save drinkmaker/ee5795e36970b667504f to your computer and use it in GitHub Desktop.
widget-file.php
<?php
// Add plugin settings
$Plugin_Name = plugin_basename( __FILE__ );
add_filter( "plugin_action_links_$Plugin_Name", 'tt_Add_Settings_Links_For_Plugin' );
if ( !function_exists('tt_Add_Settings_Links_For_Plugin') ) {
function tt_Add_Settings_Links_For_Plugin($links) {
array_push($links, '<a title="We are developing beautiful themes and applications for the web!" href="http://torbara.com" target="_blank" style="font-weight: bold; font-size: 14px;"><img src="http://www.googledrive.com/host/0Bxtm5PidFyMoN3VhYWlfVU45MXc" alt="" style="width: 24px; vertical-align: middle; position: relative; top: -1px;"> Torbara.com</a>');
array_push($links, '<a title="Our portfolio on Envato Market" href="http://themeforest.net/user/torbara/portfolio?ref=torbara" target="_blank"><img src="http://www.googledrive.com/host/0Bxtm5PidFyModml3aXJ0T3hFQ2M" alt="" style="width: 16px; vertical-align: middle; position: relative; top: -2px;"> Envato</a>');
return $links;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment