PODS:限制关系字段的结果

时间:2014-04-09 12:35:47

标签: wordpress relationship podscms

我有2个带有字段名称和测试的“工具”和带有字段日期和工具的“测试”。在工具内容类型中测试Test中的字段工具的关系字段。

当我们想要获得一些关系字段时,我们

$pod = pods( 'pod_name', get_the_id() );
$related = $pod->field( 'relationship_field' );

我得到结果列表1,2,3 ......但我只需要2个结果。我怎么能这样做?

1 个答案:

答案 0 :(得分:1)

尝试array_splice

$related = array_splice( $related, 0, 2 );