[wp-trac] [WordPress Trac] #63246: Undefined Property
WordPress Trac
noreply at wordpress.org
Mon Apr 7 14:24:28 UTC 2025
#63246: Undefined Property
--------------------------+------------------------------
Reporter: neo2k23 | Owner: (none)
Type: defect (bug) | Status: new
Priority: normal | Milestone: Awaiting Review
Component: General | Version: trunk
Severity: normal | Resolution:
Keywords: | Focuses:
--------------------------+------------------------------
Comment (by siliconforks):
Probably a full stack trace will be needed to debug this.
You could try adding something like this to your `wp-config.php` file:
{{{#!php
set_error_handler( static function () {
ob_start();
debug_print_backtrace();
error_log( ob_get_clean() );
return false;
} );
}}}
Then the next time the warning occurs, there should be a (probably
lengthy) stack trace in your error log file.
--
Ticket URL: <https://core.trac.wordpress.org/ticket/63246#comment:1>
WordPress Trac <https://core.trac.wordpress.org/>
WordPress publishing platform
More information about the wp-trac
mailing list