WordPress中的ReOrder插件給了我這個錯誤。我該如何解決這個問題?WordPress內存中的ReOrder插件錯誤
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 1048576 bytes) in /home1/homegood/public_html/wp-includes/wp-db.php on line 1971
WordPress中的ReOrder插件給了我這個錯誤。我該如何解決這個問題?WordPress內存中的ReOrder插件錯誤
Fatal error: Allowed memory size of 268435456 bytes exhausted (tried to allocate 1048576 bytes) in /home1/homegood/public_html/wp-includes/wp-db.php on line 1971
這是一個內存分配錯誤,它是由插件向操作系統請求內存,當沒有可用的內存分配錯誤。
選項:
我已經解決了這個問題。在末尾插入此代碼爲post-types-order.php
$ r ['hierarchical'] = 0;
的$ args =陣列(
'排序欄'=> 'menu_order',
'post_type'=> $ post_type,
'posts_per_page'=> -1,
'的OrderBy'=> 'menu_order',
'順序'=> 'ASC',
的POS ts_per_page'=> 100 // mymodif for 100 first post );