Created
October 5, 2018 04:26
-
-
Save wichaksono/417f35f4f76a0388a2423ad834cda699 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
*/ | |
require_once get_theme_file_path('class-list-member.php'); | |
function addMenuMembers() | |
{ | |
add_menu_page('Memberss', 'Memberss', 'manage_options', 'customer', 'MembersHtml'); | |
} | |
add_action('admin_menu', 'addMenuMembers', 1); | |
function MembersHtml() | |
{ | |
echo "<h2>Member</h2>"; | |
$memberLists = new memberLists(); | |
$memberLists->prepare_items(); | |
$memberLists->views(); | |
$memberLists->display(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment