• Здравствуйте, лог nginx забит сообщениями об ошибке:

    *853 FastCGI sent in stderr: “PHP message: PHP Warning: Creating default object from empty value in /home/user/web/my-site/public_html/wp-content/plugins/yandexnews-feed-by-teplitsa/inc/tst-yandex-feed-core.php on line 722

    На сервере установлена последняя версия php (7.4).

    			$query->query_vars['tax_query'][] = array(
    				'taxonomy' => $tax,
    				'field' => 'id',
    				'terms' => $terms
    			);
    		}

    проблема в этом месте – как ее самостоятельно устранить?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author Teplitsa support

    (@teplosup)

    Здравствуйте!

    Попробуйте заключить код в условие:

    if($query) {
    $query->query_vars[‘tax_query’][] = array(
    ‘taxonomy’ => $tax,
    ‘field’ => ‘id’,
    ‘terms’ => $terms
    );
    }

    Thread Starter bahinnn

    (@bahinnn)

    Спасибо, ошибки перестали появляться.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Ошибка в логах’ is closed to new replies.