Advertisement
Beee

Desired template

Jan 13th, 2015
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.58 KB | None | 0 0
  1. <div class="frontpageblock">
  2.     <div class="upcoming">
  3. <?php
  4.     $siteurl                            = get_home_url();
  5.     $stylesheetdirectory    = get_bloginfo('stylesheet_directory');
  6.     $eventcounter               = 0;
  7.     $eventargs = array(
  8.         'scope'                     => 'future',
  9.         'order'                     => 'ASC',
  10.         'limit'                     =>  5,
  11.         'format_footer'     => '
  12.             <tr class="">
  13.                 <td class="bottom" colspan="5"><a href="' . $siteurl . '/events/">Click here for all events &raquo;</a></td>
  14.             </tr>
  15.             </table>
  16.         ',
  17.     );
  18. ?>
  19.     <h4 class="sectionheader">Upcoming downhill events</h4>
  20. <?php em_events( $eventargs ); ?>
  21.     </div>
  22. </div>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement