Is it possible to display the admin bar while in the Theme Customizer?

I’ve been using Debug Bar + Kint Debugger for debugging. Presently I’m working on a custom theme where I’m trying to hook some code into customize_save_after. The code doesn’t appear to be running when the theme is saved, so I’d like to be able to access Debug Bar so I can see the variables I’m … Read more

WP Cron emails not working

Running wp 3.5.1. I have 2 plugins that work in part. They do everything nice. If I click to send emails, they send the emails. However the scheduled emails are not being sent. The plugins are: WordPress file monitor plus version 2.2 WP-db manager version 2.63 TROUBLESHOOTING I have tried to change the schedule to … Read more

Where should I tell WordPress where error_log messages should be written?

I have two different instances of the same server (one for development, one for deployment), built independently but basically the same (same OS, same WordPress version, same content etc.). However, I’m confused about the configuration: it looks to me like they’re configured the same (except that the deployment server is told not to write errors/warnings … Read more

How to get site URL if database is disconnected?

Recently I realized that you could include a db-error.php file in your wp-content directory from “How to monitor server for error establishing a database connection” that would replace the existing WordPress database error message with something custom. I thought about doing a redirect in db-error.php like: header(“Location: http://vader.com/saber.html”); exit(); but I wanted to replace http://vader.com … Read more