Skip to content

Instantly share code, notes, and snippets.

View V0IDNIL's full-sized avatar

VOIDNIL V0IDNIL

  • Osaka
  • 05:46 (UTC +09:00)
View GitHub Profile
<?php
//set up pods::find parameters to limit to 5 items
$param = array(
'limit' => 5,
);
//create pods object
$pods = pods('pod_name', $params );
//check that total values (given limit) returned is greater than zero
if ( $pods->total() > 0 ) {