Ticket #11651: testtab.php
| File testtab.php, 485 bytes (added by edwardw, 21 months ago) |
|---|
| Line | |
|---|---|
| 1 | <?php |
| 2 | /* |
| 3 | Plugin Name: Welcome Screen Test Plugin |
| 4 | Plugin URI: http://localhost/ |
| 5 | Description: This is a welcome screen test plugin. |
| 6 | Author: |
| 7 | Version: 0.1 |
| 8 | Author URI: http://localhost/ |
| 9 | */ |
| 10 | |
| 11 | add_filter('admin_welcome_screen_moretabs',function($arr) { $arr['My Plugin\'s Tab'] = |
| 12 | ' |
| 13 | <p>This is an additional tab for the welcome screen that can be added by a plugin, such as this test plugin.</p> |
| 14 | <ul> |
| 15 | <li>Test One</li> |
| 16 | <li>Test Two</li> |
| 17 | <li>Test Three</li> |
| 18 | </ul> |
| 19 | |
| 20 | '; |
| 21 | return $arr; |
| 22 | }); |
| 23 | ?> |
