I am trying to: access my wp-admin
I expected to see: my dashboard page
Instead, I got: [28-Jul-2023 05:59:04 UTC] PHP Deprecated: ctype_digit(): Argument of type WP_Post will be interpreted as string in the future in /home/gran2379/public_html/wp-content/plugins/cred-frontend-editor/vendor/toolset/toolset-common/inc/autoloaded/field/group/factory.php on line 134
how to solve this? please guide me. thanks
Hi there,
The deprecation notice you shared does not halt the execution of the code and it should not have anything to do with the issue of not being able to access wp-admin.
You can force WordPress to not show that notice by adding the code below to wp-config.php file of your website root:
define( 'WP_DEBUG', false );
Please add the code above the line below:
/* That's all, stop editing! Happy blogging. */
Also as a test you can access your website files in FTP and go to wp-content/plugins/ folder and deactivate toolset related plugins by renaming their respective folders.
Thanks.