I don't know why WordPress is not displayed on the BAE list page. Everything works normally on the local site. If the navigation function is missing, there is always something missing, and the operation and reading are inconvenient, I found a correction on the internet today.CodeYou can decide, hoping to help you.
Find the topic's fuctions. php file, add the following code, and save it.
/**
*.
* Www.banysky.net is not displayed on the page of the repair list.
*/
Function my_posts_request_filter ($ input, $ OBJ ){
Return str_replace ("SQL _calc_found_rows", '', $ input );
}
function my_found_posts_query_filter ($ input, $ OBJ) {
$ request = $ obj-> request;
$ rows = '';
If (strpos ($ request, 'join')> 0 | strpos ($ resuest, 'Group by')> 0) {
$ rows = preg_replace ("/select (. *?) From (.*?) Limit (. *)/is "," select count (*) from (select count (*) from $2) Count ", $ request );
} else {
$ rows = preg_replace ("/select (. *?) From (.*?) Limit (. *)/is "," select count (*) from $2 ", $ request);
}< br> return $ rows;
}
Add_filter ('posts _ request', 'My _ posts_request_filter ', 10, 2 );
Add_filter ('found _ posts_query ', 'My _ found_posts_query_filter', 10, 2 );
/** End **/
The modified results are as follows:
Homepage display:
Page navigation in the background: