Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在寻找一种编程方式,使用 Craft CMS 3 通过 PHP 中的属性访问条目。
这是我到目前为止所拥有的:
Craft::$app->getEntries()->getEntryById('1234');
getEntryById()似乎是唯一可用的方法getEntries()...
getEntryById()
getEntries()
我想做什么(在伪代码中):
Craft::$app->getEntries()->getEntryByAttribute('ItemNumber', '1234');
您可以按字段值查询条目,如下所示:
\craft\elements\Entry::find()->section('mySection')->where(['field_myFieldHandle' => $myValue])->one();