Advertisement
benjisimon

Untitled

Sep 9th, 2016
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. <?
  2. $recommendations = api_call('play/get_recommendations_by_playid', array('playid' => $lasttitle, 'count'=>16));
  3.  
  4. ?>
  5.  
  6.  
  7. <div class="title-slider-wrapper">
  8. <div class="tlt-title">
  9. <h3>You May Also Like</h3>
  10. </div>
  11. <div class="titles-slider">
  12. <? foreach( $recommendations as $s ) { ?>
  13. <?= snippet('themes/sudden/slide', array('slide' => $s )); ?>
  14. <? } ?>
  15. </div>
  16. </div>
  17. <!-- END title-slider-wrapper -->
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement