Make WordPress Core

Ticket #6621: test.php

File test.php, 267 bytes (added by mattyrob, 18 years ago)
Line 
1<?php
2/*
3Plugin Name: add_users_page test
4Version: 1.0
5Author: MattyRob
6*/
7
8function admin_menu() {
9        add_users_page('My Title', 'My Title', "read", __FILE__, 'user_menu');
10}
11
12function user_menu() {
13        echo "Some Test Here";
14}
15
16add_action('admin_menu', 'admin_menu');
17?>