Advertisement
Advertisement

More Related Content

Advertisement
Advertisement

WordPress Debugging Tips and Tricks

  1. WordPress Debugging Tips and Tricks KEANAN KOPPENHAVER KEANAN@DOEJO.COM ! @KKOPPENHAVER
  2. This is one of those audience participation talks.
  3. Step 1: Identify the problem
  4. Step 2: Find the cause
  5. Step 3: Find the solution
  6. Step 4: Repeat
  7. Part 1 | Front End
  8. What are Dev Tools?
  9. (Spoiler Alert: They help with debugging step 2)
  10. Developer Tools • Bundled with most major browsers (Chrome, Firefox, Safari) • Allow you to inspect elements, console, network traffic and much more • You can even code in dev tools (please don’t)
  11. Demo: Chrome Dev Tools
  12. Bonus Tip: Safari Dev Tools work with iOS simulator
  13. Part 2 | Back End
  14. if ( $env == ‘development’ ) { PLEASE USE WP_DEBUG; (or WP_DEBUG_LOG) }
  15. Query Monitor • Dev plugin runs in the background on every page when enabled • You can monitor much more than queries… • Hooks, theme info, request info, oh my!
  16. Demo: Query Monitor
  17. Let’s talk about server logs
  18. [03-May-2016 21:12:56 UTC] PHP Fatal error: Uncaught Error: Cannot use object of type stdClass as array in /Users/doejo/code/Dev/ wordpress/wp-content/themes/clientname/lib/admin-helpers.php:303 Stack trace: #0 /Users/doejo/code/Dev/wordpress/wp-includes/plugin.php(525): RootsSageExtrasrestrict_adding_tags('') #1 /Users/doejo/code/Dev/wordpress/wp-settings.php(393): do_action('init') #2 /Users/doejo/code/Dev/wordpress/wp-config.php(85): require_once('/Users/doejo/co...') #3 /Users/doejo/code/Dev/wordpress/wp-load.php(37): require_once('/Users/doejo/co...') #4 /Users/doejo/code/Dev/wordpress/wp-admin/admin.php(31): require_once('/Users/doejo/co...') #5 /Users/doejo/code/Dev/wordpress/wp-admin/post.php(12): require_once('/Users/doejo/co...') #6 {main} thrown in /Users/doejo/code/Dev/wordpress/wp-content/themes/ clientname/lib/admin-helpers.php on line 303
  19. [03-May-2016 21:12:56 UTC] PHP Fatal error: Uncaught Error: Cannot use object of type stdClass as array in /Users/doejo/code/Dev/ wordpress/wp-content/themes/clientname/lib/ admin-helpers.php:303
  20. Questions? KEANAN KOPPENHAVER KEANAN@DOEJO.COM ! @KKOPPENHAVER
Advertisement