IT Nursery
I created theme options page using Settings API, everything works fine but I can’t save options. I tried to figure it out where I missed something but I failed....
  • June 3, 2022
  • 0 Comments
IT Nursery
I am using the following code: register_setting( 'myplugin_options', //setting group name 'myplugin_options', //option name that will be stored in the database 'myplugin_validate_options'//optional callback function ); function myplugin_validate_options($input) { //how...
  • June 3, 2022
  • 0 Comments
IT Nursery
I am trying to add some code to the head (namely a block of tracking script) via a plugin I am making. The plugin has an interface where the...
  • June 3, 2022
  • 0 Comments