Plugin Directory

Changeset 2696336


Ignore:
Timestamp:
03/19/2022 05:13:23 AM (4 years ago)
Author:
morphii
Message:

Added Pro link

File:
1 edited

Legend:

Unmodified
Added
Removed
  • morphii/trunk/morphii-init.php

    r2679598 r2696336  
    9898
    9999add_action( 'plugins_loaded', 'morphii_install', 11 );
     100
     101add_action( 'plugin_action_links_' . plugin_basename( __FILE__ ), 'morphii_go_pro_link' );
     102
     103function morphii_go_pro_link( $links ) {
     104
     105    $links = array_merge($links , array(
     106        '<a target="_blank" href="https://morphii.com/pro" style="color:green;font-weight:bold">Go Pro</a>'
     107    ));
     108
     109    return $links;
     110
    100111}
     112}
Note: See TracChangeset for help on using the changeset viewer.