The tag has no wiki summary.

learn more… | top users | synonyms (1)

0
votes
2answers
19 views

Not sure how to debug: Send specific users an email when posts are published

I've got the following code, which is supposed to run when a new post is published for the first time, check if a custom field 'specific_users' has data (this uses Advanced Custom Fields), and if so, ...
0
votes
1answer
16 views

Best place to call xdebug helper functions?

Right now I place the following code wherever I expect something to go wrong. /** xdebug helper */ error_reporting(E_ERROR); ini_set("display_errors", 1); ini_set("html_errors", 1); ...
2
votes
0answers
46 views

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: ...
1
vote
0answers
66 views

Debugging unserialize errors

NOTICE: wp-includes/functions.php:232 - unserialize() I get this error of varying lengths on the admin pages of several of the sub-blogs of my multisite instance. It doesn't happen on all the blogs, ...
0
votes
0answers
27 views

WordPress won't display errors at all

I have been having constant issue with WordPress not displaying errors at all and I have no clue what is wrong. PHP errors display on non-wordpress related pages. Debugging is turned on. Display ...
0
votes
0answers
22 views

Comments in Wordpress shoves content out of wrapper on updates

I have a problem with comments in the Wordpress theme I'm building. As of now, I can comment just fine, but whenever I do (press "reply", "edit comment", press the date, really anything that involves ...
0
votes
0answers
95 views

Debugging a WPCron function

I'm trying to run a WP cron job which, every hour, checks for recently created/updated posts and runs a filter on them. if ( $post->post_type == "species" ) { $meta = get_post_custom( ...