PluginProbe
Calendar / 1.1.1
Calendar v1.1.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.1, at wp-calendar.php

53 lines 1020 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.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 <style type="text/css">
19 span.calnk a {
20 text-decoration:none;
21 color:#000000;
22 border-bottom:1px dotted #000000;
23 }
24 span.calnk a:hover {
25 text-decoration:none;
26 color:#000000;
27 border-bottom:1px dotted #000000;
28 }
29 span.calnk {
30 position:relative;
31 }
32 span.calnk a span {
33 display:none;
34 }
35 span.calnk a:hover span {
36 color:#333333;
37 background:#F6F79B;
38 display:block;
39 position:absolute;
40 margin-top:1px;
41 padding:5px;
42 width:150px;
43 z-index:100;
44 }
45 </style>
46
47 <h2>Calendar</h2>
48
49 <?php echo calendar(); ?>
50
51 <?php get_sidebar(); ?>
52 <?php get_footer(); ?>
53