<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	xmlns:itunes="http://www.itunes.com/dtds/podcast-1.0.dtd"
>

<channel>
	<title>Bill Selak &#187; wp</title>
	<atom:link href="http://www.billselak.com/archives/tag/wp/feed" rel="self" type="application/rss+xml" />
	<link>http://www.billselak.com</link>
	<description>the (ed)tech (bill)tech podcast: where education and technology meet</description>
	<lastBuildDate>Sat, 10 Apr 2010 04:06:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<!-- podcast_generator="Blubrry PowerPress/1.0.6" mode="advanced" entry="normal" -->
	<itunes:summary>With a new topic every 10 weeks, (ed)tech (bill)tech teaches you how to incorporate technology into your classroom successfully.</itunes:summary>
	<itunes:author>Bill Selak</itunes:author>
	<itunes:explicit>clean</itunes:explicit>
	<itunes:image href="http://www.billselak.com/podcast/edtech_billtech_itunes.jpg" />
	<itunes:owner>
		<itunes:name>Bill Selak</itunes:name>
		<itunes:email>billselak@gmail.com</itunes:email>
	</itunes:owner>
	<managingEditor>billselak@gmail.com (Bill Selak)</managingEditor>
	<copyright>2009</copyright>
	<itunes:subtitle>How to incorporate technology into your classroom successfully.</itunes:subtitle>
	<itunes:keywords>Ed  tech, educational technology, education, technology, podcasting, classroom teacher, training, technology for the classroom</itunes:keywords>
	<image>
		<title>Bill Selak &#187; wp</title>
		<url>http://www.billselak.com/podcast/edtech_billtech_rss.jpg</url>
		<link>http://www.billselak.com</link>
	</image>
	<itunes:category text="Education">
		<itunes:category text="Education Technology" />
		<itunes:category text="Education Technology" />
		<itunes:category text="Education Technology" />
	</itunes:category>
		<item>
		<title>Say no to sidebars! (customize your Wordpress pages)</title>
		<link>http://www.billselak.com/archives/407</link>
		<comments>http://www.billselak.com/archives/407#comments</comments>
		<pubDate>Wed, 11 Nov 2009 19:47:43 +0000</pubDate>
		<dc:creator>billselak</dc:creator>
				<category><![CDATA[525]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[edtech]]></category>
		<category><![CDATA[gallery]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[html]]></category>
		<category><![CDATA[web design]]></category>
		<category><![CDATA[conditional formatting]]></category>
		<category><![CDATA[customize]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[sidebar]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://www.billselak.com/?p=407</guid>
		<description><![CDATA[Typically, I blog about educational technology that the average teacher can understand. This, however, is some heavy lifting.
Here is an advanced trick for Wordpress users. This is how I removed the sidebar from one specific page (titled forum) on my wordpress site. After much searching, I found that I needed to implement conditional formatting using [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.flickr.com/photos/billselak/3299787804/" title="custom drink by billaday, on Flickr"><img src="http://farm4.static.flickr.com/3354/3299787804_ab4df00995_m.jpg" width="240" height="180" alt="custom drink" /></a>Typically, I blog about educational technology that the average teacher can understand. This, however, is some heavy lifting.</p>
<p>Here is an advanced trick for Wordpress users. This is how I removed the sidebar from one specific page (titled forum) on my wordpress site. After much searching, I found that I needed to implement conditional formatting using php. </p>
<p>Here&#8217;s my problem:<br />
I wanted one single wordpress page to <strong>not</strong> have a sidebar. I wanted it to take up the entire width of the page. Makes sense for a <a href="http://www.billselak.com/forum">forum</a>, right? Not so easy&#8230;</p>
<p>Solution:<br />
In the wordpress dashboard, navigate to Appearance > Editor > page.php.<br />
On page.php, I changed:
<pre class="brush: plain; light: true;">&lt;?php get_sidebar();; ?&gt;</pre>
<p>to:
<pre class="brush: plain; light: true;">&lt;?php if(!is_page('Forum')) get_sidebar();; ?&gt;</pre>
<p>Here&#8217;s what that means:<br />
Typically, wp displays the sidebar. That&#8217;s what we usually want. In this case, the exclamation point means &#8220;if it is not&#8221;. So, the php translation is, &#8220;If it&#8217;s not the Forum page, then show the sidebar.&#8221;</p>
<p>Perfect, so far. However, there was a blank space where the sidebar used to be. Another problem. The forum should be wider. This won&#8217;t happen, though, because my stylesheet says the page can only be 510 pixels wide.</p>
<p>So, I went to my stylesheet and created a  div titled #widecolumn with a width of 100%. </p>
<p>Back on page.php, I changed the original div titled #contentleft to:</p>
<pre class="brush: plain;">&lt;?php if(!is_page('Forum')) { ?&gt;
&lt;div id=&quot;contentleft&quot;&gt;
&lt;?php } else { ?&gt;
&lt;div id=&quot;widecolumn&quot;&gt;
&lt;?php } ?&gt;</pre>
<p>Again, with the php translation: &#8220;If it&#8217;s not the Forum page, use the div #contentleft (with a width of 510 px). If it is the Forum page, use the #widecolumn div that you just made (with a width of 100%).</p>
<p>Yay!</p>
]]></content:encoded>
			<wfw:commentRss>http://www.billselak.com/archives/407/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Permalinks on WordPress</title>
		<link>http://www.billselak.com/archives/289</link>
		<comments>http://www.billselak.com/archives/289#comments</comments>
		<pubDate>Mon, 08 Jun 2009 06:38:14 +0000</pubDate>
		<dc:creator>billselak</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[permalinks]]></category>
		<category><![CDATA[settings]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://www.billselak.com/?p=289</guid>
		<description><![CDATA[Before today, I had a vague understanding of what a permalink was. I thought it was some sort of hyperlink that was&#8230; well, permanent.
Now I know more about permalinks, and how it&#8217;s important in WordPress. A permalink is simply a URL for a WordPress entry/page. The default URL, or permalink, in WordPress look something like [...]]]></description>
			<content:encoded><![CDATA[<p>Before today, I had a vague understanding of what a permalink was. I <em>thought</em> it was some sort of hyperlink that was&#8230; well, permanent.</p>
<p>Now I know more about permalinks, and how it&#8217;s important in WordPress. A permalink is simply a URL for a WordPress entry/page. The default URL, or permalink, in WordPress look something like this: http://www.billselak.com/?p=153. Pretty ugly. Here is how to fix that in WordPress:</p>
<ol>
<li>Go to Settings &gt; Permalinks.</li>
<li>Change the radio button from Default to Numeric.</li>
<li>Save Changes.</li>
</ol>
<p><img src="http://www.billselak.com/tutorials/settings.png" alt="" width="122" height="165" /></p>
<blockquote><p>So now, your URLs that once looked like:</p>
<p>http://www.billselak.com/educ525/?p=153</p>
<p>now look like:</p>
<p>http://www.billselak.com/educ525/weekly/week2</p></blockquote>
<p>Now, when you write a new blog post or create a new page, there is a little box that lets you type in the URL you want.<br />
<img src="http://www.billselak.com/tutorials/permalink.png" alt="" width="393" height="167" /></p>
<p>If you&#8217;ve recently installed WordPress, you are all set! If, however, you already typed in the nasty default URLs, you&#8217;ll want to go back and update them. WordPress will automatically forward the old links, but it&#8217;s in bad form to leave it that way.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.billselak.com/archives/289/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Two Wordpress blogs, One Site</title>
		<link>http://www.billselak.com/archives/48</link>
		<comments>http://www.billselak.com/archives/48#comments</comments>
		<pubDate>Mon, 26 Jan 2009 04:42:08 +0000</pubDate>
		<dc:creator>billselak</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[hosting]]></category>
		<category><![CDATA[how-to]]></category>
		<category><![CDATA[tutorial]]></category>
		<category><![CDATA[wp]]></category>

		<guid isPermaLink="false">http://www.billselak.com/?p=48</guid>
		<description><![CDATA[You can create and host more than one Wordpress account on your host.]]></description>
			<content:encoded><![CDATA[<p><em>Here was my problem:<br />
</em>I wanted to set up a Wordpress blog for my EDUC 515 class. I wanted to have a separate navigation, a different color scheme, and a second blog. I already have Wordpress set up for my main page (billselak.com), and I couldn&#8217;t publish new posts to my EDUC 515 page.</p>
<p><em>Here is my solution:<br />
</em>I created an empty folder on my server (inside public.html) named educ515, and simply installed another Wordpress account inside that folder. Now, I can log in to my main Wordpress, or my 515 Wordpress. Once I&#8217;m logged into my 515 account, I created one (static) page for each week of class, with directions, reminders, and notes from that class session. Disclaimer: I&#8217;m not sure if this is how you&#8217;re supposed to do it, but it&#8217;s working really well so far.</p>
<p>This is yet another reason I&#8217;m happy to pay for my own hosting service. So much more control than the free wordpress.com blog, so less hassle (and work) than a web site built from scratch.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.billselak.com/archives/48/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
