Tagged Questions
-1
votes
1answer
112 views
Hidden page wp-admin [closed]
I have now updated the code and added this
remove_submenu_page( $menu_slug, $submenu_slug )
function so the page can be accessed even when hidden.
function ccms_developer_theme_menu() {
...
0
votes
2answers
77 views
WordPress settings API error when checkbox unchecked
I am trying to creating some custom options for a template I am developing but I am getting an error when the checkbox (Line 130) is unchecked:
Warning: Illegal string offset 'show_admin_dev' in ...
-1
votes
2answers
500 views
Options page content place [closed]
I am building an options page for my custom wordpress theme. I found whatever I wanted to add in 3 different tutorials on the internet. The problem is that in every tutorial the content appears in a ...
0
votes
2answers
275 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 ...