Currently Exploring
debuggingWhen creating a new WordPress theme, a series of tests should be passed. Aside from the programming related ones, such as no PHP warnings, no deprecated functions, no obsolete code, no code hackery to accomplish simple tasks, there are also the common sense tests. These are the theme name, the theme design, hardcoded footer links, [...]
As I continued my quest into updating all my web sites and scripts for the big update, I tried to use an easy method to debug my PHP scripts. So, I modified my php.ini file and changed the following lines: error_reporting = E_ALL display_errors = On display_startup_errors = On log_errors = On track_errors = On [...]