PHP Warning adding menu

Please check the first parameter of the function stripe_tags from \wp-includes\formatting.php on line 4670. You can check the value of the parameter by using var_dump( $variable ) and if you get array then change the array to string and then pass the string in the function. You can also use the function is_array to check … Read more

What’s the warning on line 736?

As you can see here (https://core.trac.wordpress.org/browser/tags/5.0.3/src/wp-includes/class-wp-query.php#L736), the 736 line of that file contains: $qv[‘name’] = trim( $qv[‘name’] ); And $qv is defined as: $this->query_vars = $this->fill_query_vars($this->query_vars); $qv = &$this->query_vars; So… That means, that you use WP_Query incorrectly somewhere in your code… You should pass string value as name param, and it looks like somewhere in … Read more

Can’t save changes or modify settings in Dashboard but Pages and Posts are fine

Figured it out. In an attempt to optimize Astra theme’s performance, I modified the PHP settings in cPanel > MultiPHP INI Editor based on recommendations online. However, I wasn’t careful enough with my changes. I had neglected to include M in post_max_size, using only a number. 😐 After adding it, everything started to work correctly … Read more