Conversation
supportHi Nick, I wanted to share a repeating issue I've seen in my PHP Error logs with Featured Audio: PHP Warning: Undefined property: stdClass::$publish in /public/wp-content/plugins/featured-audio/featured-audio-recent-playlist-widget.php on line 80 That line is: $total_pieces = wp_count_posts( 'any' )->publish; I asked ChatGPT how to fix it and it said to replace that line with: $count_obj = wp_count_posts( 'post' ); $total_pieces = isset( $count_obj->publish ) ? $count_obj->publish : 0; This change resolved the issue and no further errors are logged.
No comments were stored for this source.