PluginProbe
WP Ultimate Post Grid / 2.4.0
WP Ultimate Post Grid v2.4.0
4.1.1 trunk 1.5 1.6 1.7 1.7.1 1.7.2 1.8 1.9 2.0 2.1 2.2 2.3 2.4.0 2.5.0 2.6.0 2.7.0 2.8.0 2.8.2 3.0.0 3.3.0 3.4.0 3.5.0 3.6.0 3.7.0 All 32 releases
wp-ultimate-post-grid / helpers / plugin_action_link.php

plugin_action_link.php in WP Ultimate Post Grid 2.4.0, at helpers/plugin_action_link.php

17 lines 620 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 class WPUPG_Plugin_Action_Link {
4
5 public function __construct()
6 {
7 add_filter( 'plugin_action_links_' . WPUltimatePostGrid::get()->corePath . '/wp-ultimate-post-grid.php', array( $this, 'action_links' ) );
8 }
9
10 public function action_links( $links )
11 {
12 $links[] = '<a href="'. get_admin_url( null, 'edit.php?post_type=' . WPUPG_POST_TYPE . '&page=wpupg_admin' ) .'">'.__( 'Settings', 'wp-ultimate-recipe' ).'</a>';
13 $links[] = '<a href="http://bootstrapped.ventures" target="_blank">'.__( 'More information', 'wp-ultimate-post-grid' ).'</a>';
14
15 return $links;
16 }
17 }