admin管理员组文章数量:1122832
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.
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.
Share Improve this question asked Apr 7, 2017 at 17:58 Mike HanMike Han 112 bronze badges5 Answers
Reset to default 4That 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 ;)
I'm on the same problem and I can't find the meta_key edit_posts_per_page on wp_usermeta table.
The problem happens when I try to see Products on Woocommerce.
Edit:
I found the solution myself, for Woocommerce Products:
- table, 'wp_usermeta'
- meta_key, 'edit_product_per_page'
- meta_value, change to '20'
If it still doesn't work maybe you will need to clear all caches TOO.
If you have access to your phpMyAdmin panel, you can easily reset this manually inside your database.
[edit] as pointed out by Jack Johansson, I did not read the question carefully—my earlier value was incorrect.
I'm not sure if this has been updated since or is this is based on a different configuration or hook, but for me the meta_key value to change is edit_post_per_page
In my website, I found it as upload_per_page
. I changed the value from 999 to 20 and the page started loading properly on my wp-admin.
本文标签: display all posts in wordpress admin crashing after 999 screen option
版权声明:本文标题:display all posts in wordpress admin crashing after 999 screen option 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736302010a1931379.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论