wp-calendar.php in Calendar 1.1, at wp-calendar.php
| 1 | <?php |
| 2 | /* |
| 3 | Calendar v1.1 for WordPress |
| 4 | Author: Kieran O'Shea |
| 5 | E-Mail: kieran@kieranoshea.com |
| 6 | Website: http://www.kieranoshea.com |
| 7 | */ |
| 8 | |
| 9 | |
| 10 | // Require the standard WordPress header |
| 11 | require(dirname(__FILE__).'/wp-blog-header.php'); |
| 12 | |
| 13 | // Begin content of page |
| 14 | |
| 15 | get_header(); |
| 16 | ?> |
| 17 | |
| 18 | <h2>Calendar</h2> |
| 19 | |
| 20 | <?php echo calendar(); ?> |
| 21 | |
| 22 | <?php get_sidebar(); ?> |
| 23 | <?php get_footer(); ?> |
| 24 |