
Untitled
By: a guest on
Feb 10th, 2013 | syntax:
PHP | size: 0.28 KB | hits: 42 | expires: Never
<?php
// Get the latest variable from Pods URL
$id = pods_url_variable('last');
// Define the params to find the Pods Item based on the $id
$params = array( 'where' => 'permalink = "'.$id.'"' );
// Display it by using Pods Template
echo pods( 'albums' )->find( $params );
?>