Ok, so I put inside my header.php:
<?php wp_head(); ?>
as such:
<!DOCTYPE html>
<html>
<head>
<meta http-equiv=”Content-Type” content=”text/html; charset=iso-8859-1″ />
<title><?php bloginfo(‘name’);?></title>
<link href=”<?php echo get_stylesheet_uri(); ?>” rel=”stylesheet” type=”text/css” />
</head>
<body>
<div class=”header”>
<img class=”logo” src=”<?php echo get_template_directory_uri(); ?>/images/primrose_place_logo.jpg”/>
<?php wp_head(); ?><!–NB: um, so is this placeholder to let WP know I want plugin to show up in div ‘header’?–>
<div class=”menuItems”>
<?php wp_list_pages(‘title_li=&sort_column=menu_order’); ?>
<div class=”ticker”>
<p><?php if (function_exists (news_announcement)) news_announcement(); ?></p>
</div><!– END ticker–>
</div><!– END menuItems–>
</div><!– END header–>
<div class=”container”><!–wrapper for content body (which in turn holds sidebar)–>
<div class=”contentBox”>
<div class=”content”>
Then when I went to check the webpage, it just adds a break, so what I mean is the header is pushed downwards but there’s still no calendar, I already put in [calendar] shortcode in the HTML view editor in the Admin, so what the heck is going on? All it’s showing inside
my page body is a link titled: “Add Event” which links to the backend calendar (I mean Admin of course) AJAX Event calendar. BUT I want the front-end calendar to show up…
Won’t someone give me a hand?