PluginProbe
Calendar / 1.1
Calendar v1.1
trunk 1.0 1.1 1.1.1 1.1.2 1.2 1.2.1 1.2.2 1.2.3 1.3 1.3.1 1.3.10 1.3.11 1.3.12 1.3.13 1.3.14 1.3.15 1.3.16 1.3.17 1.3.18 1.3.2 1.3.3 1.3.4 1.3.5 1.3.6 All 28 releases
calendar / wp-calendar.php

wp-calendar.php in Calendar 1.1, at wp-calendar.php

24 lines 376 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
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