Got this errors keeps appeared repeatedly
Here is my line 20 on functions.php
$wp_query->max_num_pages = ceil($wp_query->found_posts / $wp_query->query_vars['posts_per_page']);
Can someone tell me what is wrong with this quotes?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
If
found_postsis 0, then it generates a warning of division by 0.A quick fix would be to add
@in front ofceilto supress warnings: