Recently updated my local dev instal to Pro 6.7.13. Wordpress Version 6.9.1. PHP 8.1.13
This is running a base install with a child theme. The only function in the child theme is:
add_filter( 'x_enqueue_parent_stylesheet', '__return_true' );
I am getting this Notice:
Notice: Function WP_Styles::add was called incorrectly. The style with the handle “x-child-theme” was enqueued with dependencies that are not registered: x-theme. Please see Debugging in WordPress for more information. (This message was added in version 6.9.1.) in /localhost/prodev/wp-includes/functions.php on line 6131
I know that a notice is low on severity. But, it seems that something in the parent theme is causing the notice, as when I comment out that function it notice goes away. I like to keep debugging on while developing so would be great to have a solution as to what is causing this.