Guest User

Untitled

a guest
Sep 26th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.45 KB | None | 0 0
  1. <?php
  2. // PRECODE
  3. $slug = pods_url_variable( 1 );
  4. $params = array( 'where' => 't.slug = "' . $slug . '"', 'limit' => 1, 'search' => false, 'pagination' => false );
  5. $pods = new Pod( 'artist', $params );
  6.  
  7. if ( !$pods->fetchRecord() ) {
  8. wp_redirect('../');
  9. die();
  10. }
  11.  
  12.  
  13.  
  14.  
  15.  
  16. <?php
  17. // MAIN CODE
  18.  
  19. global $pods;
  20. $pods->resetPointer(0);
  21.  
  22. ?>
  23.  
  24. <div id="primary">
  25. <div id="content" role="main">
  26. <?php echo $pods->showTemplate('artist_detail'); ?>
  27. </div>
  28. </div>
Add Comment
Please, Sign In to add comment