<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: One BIG WordPress Site: A Case Study</title>
	<atom:link href="http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/</link>
	<description>Esther, geekin' out</description>
	<lastBuildDate>Wed, 10 Mar 2010 18:43:42 +0000</lastBuildDate>
	
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Vista Themes</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-3297</link>
		<dc:creator>Vista Themes</dc:creator>
		<pubDate>Thu, 10 Dec 2009 11:58:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-3297</guid>
		<description>Excellent case study! washingtonisland.com sure looks (and I bet, functions) a lot better.

What made you choose wordpress as opposed to drupal or joomla btw?</description>
		<content:encoded><![CDATA[<p>Excellent case study! washingtonisland.com sure looks (and I bet, functions) a lot better.</p>
<p>What made you choose wordpress as opposed to drupal or joomla btw?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kiper IT-konsult</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-3117</link>
		<dc:creator>Kiper IT-konsult</dc:creator>
		<pubDate>Fri, 20 Nov 2009 10:04:50 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-3117</guid>
		<description>Great case study Esther!

I wish I took the time to document my projects this well. And really nice redesign!</description>
		<content:encoded><![CDATA[<p>Great case study Esther!</p>
<p>I wish I took the time to document my projects this well. And really nice redesign!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lilatovcocktail</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-2543</link>
		<dc:creator>lilatovcocktail</dc:creator>
		<pubDate>Wed, 14 Oct 2009 01:58:37 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-2543</guid>
		<description>Excellent. I was just looking up the wp_enqueue_script () function. Thanks so much for your help.</description>
		<content:encoded><![CDATA[<p>Excellent. I was just looking up the wp_enqueue_script () function. Thanks so much for your help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Esther</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-2542</link>
		<dc:creator>Esther</dc:creator>
		<pubDate>Wed, 14 Oct 2009 01:01:40 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-2542</guid>
		<description>This is the code I use in my calendar.php (WordPress template file):

[html]
&lt;div id=&quot;full-calendar&quot;&gt;&lt;/div&gt;
&lt;noscript&gt;
&lt;div class=&quot;message&quot;&gt;Some message to my users &amp; a link to the calendar if they have JS turned off...&lt;/div&gt;
&lt;/noscript&gt;
[/html]

And this is my JavaScript:

[javascript]&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(function($){ 
	$(&#039;#full-calendar&#039;).fullCalendar({
		events: $.fullCalendar.gcalFeed(&#039;http://mygooglefeedURL&#039;,
			{ className: &#039;gcal-events&#039; }
		), 
		eventClick: function(event) {
			window.open(event.url, &#039;gcalevent&#039;, &#039;width=700,height=600&#039;);
			return false;
		},
		loading: function(bool) {
			if (bool) $(&#039;#loading&#039;).show();
			else $(&#039;#loading&#039;).hide();
		},
		abbrevDayHeadings: false
	});
});
&lt;/script&gt;[/javascript]


You&#039;ll also need to make sure that you include the jQuery FullCalendar plugin and GCal support. Use the &lt;code&gt;wp_enqueue_script()&lt;/code&gt; function to include &lt;code&gt;/js/fullcalendar/fullcalendar.min.js&lt;/code&gt;, &lt;code&gt;/js/fullcalendar/gcal.js&lt;/code&gt;, and &lt;code&gt;/js/fullcalendar/jquery/ui.core.js&lt;/code&gt;.</description>
		<content:encoded><![CDATA[<p>This is the code I use in my calendar.php (WordPress template file):</p>
<pre class="brush: xml;">
&lt;div id=&quot;full-calendar&quot;&gt;&lt;/div&gt;
&lt;noscript&gt;
&lt;div class=&quot;message&quot;&gt;Some message to my users &amp; a link to the calendar if they have JS turned off...&lt;/div&gt;
&lt;/noscript&gt;
</pre>
<p>And this is my JavaScript:</p>
<pre class="brush: jscript;">&lt;script type=&quot;text/javascript&quot;&gt;
jQuery(function($){
	$('#full-calendar').fullCalendar({
		events: $.fullCalendar.gcalFeed('http://mygooglefeedURL',
			{ className: 'gcal-events' }
		),
		eventClick: function(event) {
			window.open(event.url, 'gcalevent', 'width=700,height=600');
			return false;
		},
		loading: function(bool) {
			if (bool) $('#loading').show();
			else $('#loading').hide();
		},
		abbrevDayHeadings: false
	});
});
&lt;/script&gt;</pre>
<p>You&#8217;ll also need to make sure that you include the jQuery FullCalendar plugin and GCal support. Use the <code>wp_enqueue_script()</code> function to include <code>/js/fullcalendar/fullcalendar.min.js</code>, <code>/js/fullcalendar/gcal.js</code>, and <code>/js/fullcalendar/jquery/ui.core.js</code>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lilatovcocktail</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-2541</link>
		<dc:creator>lilatovcocktail</dc:creator>
		<pubDate>Wed, 14 Oct 2009 00:52:52 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-2541</guid>
		<description>Hi. I&#039;m having a complete failure of imagination here.  How do I integrate FullCalendar into Wordpress?  I&#039;m just realizing that all the jQuery scripts I&#039;ve used in WP had already been converted to a WP plugin by some kind, clever person. 

If it helps here&#039;s my skill level: Good with html &amp; CSS but just starting to learn PHP.</description>
		<content:encoded><![CDATA[<p>Hi. I&#8217;m having a complete failure of imagination here.  How do I integrate FullCalendar into Wordpress?  I&#8217;m just realizing that all the jQuery scripts I&#8217;ve used in WP had already been converted to a WP plugin by some kind, clever person. </p>
<p>If it helps here&#8217;s my skill level: Good with html &amp; CSS but just starting to learn PHP.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: lilatovcocktail</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-2540</link>
		<dc:creator>lilatovcocktail</dc:creator>
		<pubDate>Tue, 13 Oct 2009 23:32:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-2540</guid>
		<description>Wow, this post was like a life preserver.  I&#039;m building a website for a nonprofit using WP as the CMS (and a bit of Google apps) for just the reasons you listed, but I&#039;ve been completely stumped by what to use for a calendar. I began with Google calendar but none of the WP plugins I found had the features the client wanted. I was just tonight looking at how I might embed an AJAX or PHP calendar in the WP site when I found your post. FullCalendar is new to me but it looks just right.  So thanks for taking the time to write up this case study.</description>
		<content:encoded><![CDATA[<p>Wow, this post was like a life preserver.  I&#8217;m building a website for a nonprofit using WP as the CMS (and a bit of Google apps) for just the reasons you listed, but I&#8217;ve been completely stumped by what to use for a calendar. I began with Google calendar but none of the WP plugins I found had the features the client wanted. I was just tonight looking at how I might embed an AJAX or PHP calendar in the WP site when I found your post. FullCalendar is new to me but it looks just right.  So thanks for taking the time to write up this case study.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alister Cameron // Blogologist</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-2305</link>
		<dc:creator>Alister Cameron // Blogologist</dc:creator>
		<pubDate>Thu, 03 Sep 2009 07:52:29 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-2305</guid>
		<description>This is an excellent article. Just the kind of thing I love to read!!

Wanted to let you know that HeadSpace2 by John Godley does a few of the things you&#039;ve got other plugins for, aside from all its SEO goodness.

It would replace in the list above Page Menu Editor and Ultimate Google Analytics. It also does loads of other nifty things.

Since you&#039;ve got a few other of John&#039;s plugins there, I thought you might like to stick with him some more :)

I do!

Cheers,

-Alister

---
Alister Cameron // Blogologist
http://www.alistercameron.com

Mob. 04 0404 5555
Fax 03 8610 0050

Click here to find me online:
http://clicktoadd.me/alicam</description>
		<content:encoded><![CDATA[<p>This is an excellent article. Just the kind of thing I love to read!!</p>
<p>Wanted to let you know that HeadSpace2 by John Godley does a few of the things you&#8217;ve got other plugins for, aside from all its SEO goodness.</p>
<p>It would replace in the list above Page Menu Editor and Ultimate Google Analytics. It also does loads of other nifty things.</p>
<p>Since you&#8217;ve got a few other of John&#8217;s plugins there, I thought you might like to stick with him some more <img src='http://blog.estherswhite.net/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>I do!</p>
<p>Cheers,</p>
<p>-Alister</p>
<p>&#8212;<br />
Alister Cameron // Blogologist<br />
http://www.alistercameron.com</p>
<p>Mob. 04 0404 5555<br />
Fax 03 8610 0050</p>
<p>Click here to find me online:<br />
http://clicktoadd.me/alicam</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Raj</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-2281</link>
		<dc:creator>Raj</dc:creator>
		<pubDate>Tue, 11 Aug 2009 16:55:32 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-2281</guid>
		<description>You&#039;ve done an amazing job with the website. Thanks for writing this case study. Its very helpful.</description>
		<content:encoded><![CDATA[<p>You&#8217;ve done an amazing job with the website. Thanks for writing this case study. Its very helpful.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Daily Digest for August 9th &#124; More Than Scratch The Surface</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-2274</link>
		<dc:creator>Daily Digest for August 9th &#124; More Than Scratch The Surface</dc:creator>
		<pubDate>Sun, 09 Aug 2009 13:27:59 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-2274</guid>
		<description>[...] Shared Outta Bounds – One BIG WordPress Site: A Case Study [...]</description>
		<content:encoded><![CDATA[<p>[...] Shared Outta Bounds – One BIG WordPress Site: A Case Study [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Case studies ? - WordPress Tavern Forum</title>
		<link>http://blog.estherswhite.net/2009/07/one-big-wordpress-site-a-case-study/comment-page-1/#comment-2259</link>
		<dc:creator>Case studies ? - WordPress Tavern Forum</dc:creator>
		<pubDate>Sun, 02 Aug 2009 12:57:08 +0000</pubDate>
		<guid isPermaLink="false">http://blog.estherswhite.net/?p=103#comment-2259</guid>
		<description>[...] may appreciate their work getting exposure.  A case study found via Ian Stewarts tweets: http://blog.estherswhite.net/2009/07...-a-case-study/  Opinions ? Other case study urls [...]</description>
		<content:encoded><![CDATA[<p>[...] may appreciate their work getting exposure.  A case study found via Ian Stewarts tweets: http://blog.estherswhite.net/2009/07&#8230;-a-case-study/  Opinions ? Other case study urls [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Dynamic page generated in 0.361 seconds. -->
<!-- Cached page generated by WP-Super-Cache on 2010-03-11 03:55:51 -->
