WordPress replace howdy function now throwing deprecated warning
Thank you @mmm that helps! Setting the priority to 9992 allows this function to work in WP V6.6 /** ============================================================= * replace WordPress Howdy in Admin Bar with Hi in WordPress 6.6+ * or remove howdy (replace with nothing) */ function replace_howdy( $wp_admin_bar ) { $my_account = $wp_admin_bar->get_node(‘my-account’); if ( isset( $my_account->title ) ) { … Read more