Tagged Questions
0
votes
1answer
102 views
Hiding an added admin page menu using css
I have added an admin page in wordpress but i needed it to be hidden.I added the page successfully like this
function add_admin_page()
{
$themename = 'Cesaro';
$page_function = 'admin_page';
...
0
votes
2answers
274 views
Efficiency of wp_options vs a new table
I'm building a WordPress theme framework, that will likely have many options as development progresses.
I found a related question: When is it appropriate to create a new table in the WordPress ...