I decided to change the option on wordpress > posts > screen options > show posts to 999.
now the page crashes when i open it .
it loads for a little bit and then it crashes. how can i undo the changes . please help.
4 Answers
That option is held in the wp_usermeta
table with the edit_posts_per_page
meta key.
Using PhpMyAdmin (or straight up MySQL) you can make that change for your specific user.
Some notes of caution:
- Depending on the number of users on your website, there will likely be more than one
edit_posts_per_page
meta key available. Make sure you change the one that corresponds to the correct user ID. - DO NOT CHANGE
umeta_id
,user_id
, ormeta_key
. BAD THINGS COULD HAPPEN.
It probably goes without saying, but wherever possible options should be changed via the WordPress interface with a fall back of editing the database directly in cases like yours where WordPress (really it’s the server memory) just can’t handle the load 😉