我正在开发一个 Wordpress 模板content-article.php
这是我的代码段:
$article_field[];
$article_field[] = 'test1';
$article_field[] = 'test2';
$article_field[] = 'test3';
echo $article_field[($page->ID + $page) % 3];
PHP 通知:试图获取非对象的属性,发生在echo
即使有警告,脚本仍然可以正常执行并给我正确的结果。
我正在$article_field[]
根据分页变量旋转元素显示$page
,其中数组索引由 current page id
+ page number
% 3计算
如何修复此 PHP 通知?