- <?php
- add_filter("gform_addon_navigation", "create_menu");
- function create_menu($menus){
- $menus[] = array("name" => "my_custom_page", "label" => __("My Custom Page"), "callback" => "my_custom_page");
- return $menus;
- }
- function my_custom_page(){
- echo 'My Custom Page!';
- }
- ?>