PluginProbe
Calendar / 1.1.2
Calendar v1.1.2
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.2, at wp-calendar.php

54 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /*
3 Plugin Name: Calendar
4 Plugin URI: http://www.kieranoshea.com/programming
5 Description: This plugin allows you to display a calendar of all your events an\d appointments as a page on your site.
6 Author: Kieran O'Shea
7 Version: 1.1.2
8 Author URI: http://www.kieranoshea.com
9 */
10
11 // Require the standard WordPress header
12 require(dirname(__FILE__).'/wp-blog-header.php');
13
14 // Begin content of page
15
16 get_header();
17 ?>
18
19 <style type="text/css">
20 span.calnk a {
21 text-decoration:none;
22 color:#000000;
23 border-bottom:1px dotted #000000;
24 }
25 span.calnk a:hover {
26 text-decoration:none;
27 color:#000000;
28 border-bottom:1px dotted #000000;
29 }
30 span.calnk {
31 position:relative;
32 }
33 span.calnk a span {
34 display:none;
35 }
36 span.calnk a:hover span {
37 color:#333333;
38 background:#F6F79B;
39 display:block;
40 position:absolute;
41 margin-top:1px;
42 padding:5px;
43 width:150px;
44 z-index:100;
45 }
46 </style>
47
48 <h2>Calendar</h2>
49
50 <?php echo calendar(); ?>
51
52 <?php get_sidebar(); ?>
53 <?php get_footer(); ?>
54