Corrected that the BAE list is not displayed on the page.

Source: Internet
Author: User

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:

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.