<?xml version="1.0" encoding="UTF-8"?>
<?xml-stylesheet type="text/xsl" media="screen" href="/~d/styles/rss2full.xsl"?><?xml-stylesheet type="text/css" media="screen" href="http://feeds.feedburner.com/~d/styles/itemcontent.css"?><rss 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:feedburner="http://rssnamespace.org/feedburner/ext/1.0" version="2.0">

<channel>
	<title>ActiveBlogging</title>
	
	<link>http://activeblogging.com</link>
	<description>The Knowledge You Need For The Blog You Want</description>
	<lastBuildDate>Tue, 03 Nov 2009 07:40:37 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.4</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="self" href="http://feeds.feedburner.com/ActiveBlogging" type="application/rss+xml" /><atom10:link xmlns:atom10="http://www.w3.org/2005/Atom" rel="hub" href="http://pubsubhubbub.appspot.com" /><item>
		<title>Are Your Blog Pages ‘Section Targeted’ by Google?</title>
		<link>http://feedproxy.google.com/~r/ActiveBlogging/~3/uksA0QT_yzk/</link>
		<comments>http://activeblogging.com/info/are-your-blog-pages-section-targeted-by-google/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 07:33:07 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Headline]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[WordPress Tech]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1383</guid>
		<description><![CDATA[<p>For some time, Google has had a way to filter web pages, called Google Section Targeting &#8211; using it, pages can emphasize one part over another, and bloggers improve the focus of their site. </p><p>This can be important, especially for WordPress bloggers. For example, I once wrote on another blog about a dog ebook. For days afterwards, no matter what I wrote about, the Google ads remained for dog-related items! </p><p>On other occasions, I&#8217;ve received emails from people asking why they get ads for blogging items, although they never write ...</p>]]></description>
			<content:encoded><![CDATA[<p>For some time, Google has had a way to filter web pages, called Google Section Targeting &#8211; using it, pages can emphasize one part over another, and bloggers improve the focus of their site.</p>
<p>This can be important, especially for WordPress bloggers. For example, I once wrote on another blog about a dog ebook. For days afterwards, no matter what I wrote about, the Google ads remained for dog-related items!</p>
<p>On other occasions, I&#8217;ve received emails from people asking why they get ads for blogging items, although they never write about blogging.</p>
<p>Google filtering can help with this.</p>
<p>Does it work? Yes &#8211; but for WordPress blogs, the key is to add them appropriately, to help focus the topic. For example, to place the tags around the articles themselves, you&#8217;d want to add code inside the WordPress &#8216;loop&#8217; (such as found in &lt;strong&gt;index.php&lt;/strong&gt;):</p>
<p><code>&lt;?php while (have_posts()) : the_post(); ?&gt;<br />
&lt;!-- google_ad_section_start --&gt;<br />
&lt;div id="post-&lt;?php the_ID(); ?&gt;"&gt;<br />
...the rest of the code...<br />
&lt;/div&gt;<br />
&lt;!-- google_ad_section_start --&gt;<br />
&lt;?php endwhile; ?&gt;</code></p>
<p>The &#8220;<strong>&lt;!&#8212; google&#8230;</strong>&#8221; lines are the new ones to add. This will emphasize the articles, and deemphasize the rest of the page for Google&#8217;s search engines.</p>
<p>One exception arises here &#8211; what about the main page, where there can be several articles? In my case, the dog article stayed on the front page for a while, skewing the ads. Ideally, I&#8217;d like the topmost article only to stand out. For that, we can just replace those Google lines with a bit of PHP code:</p>
<p><code>&lt;?php while (have_posts()) : the_post(); ?&gt;<br />
&lt;?php static $ab_count=0; if (++$ab_count&lt;=1)<br />
echo "&lt;!-- google_ad_section_start --&gt;"; ?&gt;<br />
&lt;div id="post-&lt;?php the_ID(); ?&gt;"&gt;<br />
...the rest of the code...<br />
&lt;/div&gt;<br />
&lt;?php if ($ab_count++&lt;=1)<br />
echo "&lt;!-- google_ad_section_start --&gt;"; ?&gt;<br />
&lt;?php endwhile; ?&gt;</code></p>
<p>If you use this code, and look at the source code of your main blog page (use your browser&#8217;s &#8216;View Source&#8217; option), you&#8217;ll see these tags are only around the first article &#8211; helping Google focus on it.</p>
<p>Google also provide a demphasizing tag, to tell it to view sections as less important. Use</p>
<p><code>&lt;!-- google_ad_section_start(weight=ignore) --&gt;</code></p>
<p>to start a section, and</p>
<p><code>&lt;!-- google_ad_section_end --&gt;</code></p>
<p>to end it.</p>
<p>Notice I say &#8216;less important&#8217;, not  &#8216;ignore&#8217; &#8211; in fact, Google is very careful to say they will still index the whole page, only that they will give greater or lesser weight to certain sections (check Google&#8217;s site and blog for more about this topic).</p>
<p>This code can be useful in certain areas &#8211; for example, in WordPress blogs:</p>
<ul>
<li> If your sidebar is affecting your listing (for example, by showing older article titles) then place the tags at the first and last lines of your sidebar.php file, enclosing them.</li>
<li> If your footer has text in it, likewise use the tags just before and after any text in the footer.php file (but be careful to place all tags before the ending &lt;/body&gt; HTML tag).</li>
</ul>
<p>If you find yourself asking &#8216;why do my Google ads never reflect my topics&#8217; consider adding Google Section targeting. It&#8217;s simple and free, and can focus your ads. And with more targeted ads, you can expect your click through rates to rise &#8211; and profits too.</p>
<p><strong>[This is based on an article from the <a href="http://activeblogging.com/reports/#200603">ActiveBlogging Report of March 2006</a> - for the article and much more, <a href="http://activeblogging.com/member-benefits/">join ActiveBlogging Platinum</a> today]</strong></p>
<img src="http://feeds.feedburner.com/~r/ActiveBlogging/~4/uksA0QT_yzk" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/are-your-blog-pages-section-targeted-by-google/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://activeblogging.com/info/are-your-blog-pages-section-targeted-by-google/</feedburner:origLink></item>
		<item>
		<title>New WordPress(es)</title>
		<link>http://feedproxy.google.com/~r/ActiveBlogging/~3/qn5D0P-k1zE/</link>
		<comments>http://activeblogging.com/info/new-wordpresses/#comments</comments>
		<pubDate>Tue, 03 Nov 2009 05:18:44 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1373</guid>
		<description><![CDATA[<p>Quick &#8211; how can there be two current versions of WordPress, 2.8.5 AND 2.8.5.2? </p><p>The answer &#8211; two quick releases, one for &#8216;regular&#8217; WordPress, and the latter for WP MU. </p><p>The first, with several fixes, primarily focuses on security for trackbacks, which can be used for a denial of service attack. You can get it via their regular site. </p><p>For WP MU, the 2.8.5.2 version is a quick patchup to account for small bugs that crept into the 2.8.5 version &#8211; and that&#8217;s found on their MU site. </p><p>So while ...</p>]]></description>
			<content:encoded><![CDATA[<p>Quick &#8211; how can there be two current versions of WordPress, 2.8.5 AND 2.8.5.2?</p>
<p>The answer &#8211; two quick releases, one for &#8216;regular&#8217; WordPress, and the latter for WP MU.</p>
<p>The first, with several fixes, primarily focuses on security for trackbacks, which can be used for a denial of service attack. You can get it <a href="http://wordpress.org/download/">via their regular site</a>.</p>
<p>For WP MU, the 2.8.5.2 version is a quick patchup to account for small bugs that crept into the 2.8.5 version &#8211; and that&#8217;s found <a href="http://mu.wordpress.org/download/">on their MU site</a>.</p>
<p>So while 2.9 is on its way, you have  a little something new to bide the time with!</p>
<img src="http://feeds.feedburner.com/~r/ActiveBlogging/~4/qn5D0P-k1zE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/new-wordpresses/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://activeblogging.com/info/new-wordpresses/</feedburner:origLink></item>
		<item>
		<title>ActiveBlogging Report for October</title>
		<link>http://feedproxy.google.com/~r/ActiveBlogging/~3/giI7F7ENNEE/</link>
		<comments>http://activeblogging.com/info/activeblogging-report-2009-10/#comments</comments>
		<pubDate>Thu, 29 Oct 2009 06:12:58 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1365</guid>
		<description><![CDATA[<p>The October 2009 Issue of &#8216;The ActiveBlogging Report&#8217; is now ready. </p><p>Topics: </p><p>What&#8217;s New With ActiveBlogging. </p><p>A New WordPress &#8211; And A Time To Change? WordPress 2.8.5 &#8211; and my biweekly (it seems) review of the changes and what they mean &#8211; and how fast YOU need to switch to it! </p><p>Hacked Blog? Here&#8217;s What To Do Before Problems Strike. Security online is big these days &#8211; and WordPress users are constantly hearing about problems with that program. So take a deep breath, and find out how to make sure ...</p>]]></description>
			<content:encoded><![CDATA[<p>The October 2009 Issue of &#8216;The ActiveBlogging Report&#8217; is now ready.</p>
<p>Topics:</p>
<ul>
<li><b>What&#8217;s New With ActiveBlogging.</b></li>
<li><b>A New WordPress &#8211; And A Time To Change?</b> WordPress 2.8.5 &#8211; and my biweekly (it seems) review of the changes and what they mean &#8211; and how fast YOU need to switch to it!</li>
<li><b>Hacked Blog? Here&#8217;s What To Do Before Problems Strike.</b> Security online is big these days &#8211; and WordPress users are constantly hearing about problems with that program. So take a deep breath, and find out how to make sure your blog is passed over when hackers come a-calling, and how to clean up the mess if they&#8217;ve already hit your site.</li>
<li><b>How To Check Out Your Site With A Security Plugin.</b> Not knowing if your site is hacked or not is bad &#8211; so for peace of mind use this plugin that checks out your blog for common exploits.</li>
<li><b>A Drop-Dead Simple Sales Page.</b> People are willing to take your hard-earned money to add a sales page to your WordPress blog &#8211; but that&#8217;s money you can keep for yourself with 5 minute&#8217;s effort and the tricks in this article&#8230;</li>
<li><b>Internet Offers And Current Deals</b></li>
</ul>
<p>Check the <a href='http://activeblogging.com/reports/'>ActiveBlogging Reports Section</a>  for this issue.</p>
<img src="http://feeds.feedburner.com/~r/ActiveBlogging/~4/giI7F7ENNEE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/activeblogging-report-2009-10/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://activeblogging.com/info/activeblogging-report-2009-10/</feedburner:origLink></item>
		<item>
		<title>How To Blog By Email Without Problems In WordPress!</title>
		<link>http://feedproxy.google.com/~r/ActiveBlogging/~3/ad2xBVnScz8/</link>
		<comments>http://activeblogging.com/info/how-to-email-posts-in-wordpress/#comments</comments>
		<pubDate>Fri, 18 Sep 2009 01:50:14 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1215</guid>
		<description><![CDATA[<p>Write an email, hit send, and have it magically appear on your WordPress blog from anywhere. Here's how to set it up easily AND fix any problems.</p>]]></description>
			<content:encoded><![CDATA[<p>It sounds like a dream: write a post from anywhere in the world in your email program or on your Blackberry, press Send, and have your blog instantly publish the post for all the world to see.</p>
<p>Unfortunately, WordPress makes it difficult to effortlessly publish by email. Until now, that is. Using a trio of plugins, and some simple writing tips, you now have a variety of ways to use your email to create posts, every bit as good as the ones you can enter directly into WordPress via the Admin Post panel.</p>
<p><strong>The Key To Posting</strong></p>
<p>From the outside, posting by email is rather simple. To break it down, it requires:</p>
<ul>
<li>An email account to send your emails to that only you and WordPress know about.</li>
<li>WordPress being set up to properly handle and post the resulting email to your blog.</li>
<li>A way of regularly having WordPress check that mailbox.</li>
</ul>
<p>When set up right, sent emails are quickly converted to posts: the body of the email becomes the body of the post, and the subject line of the email becomes the blog post&#8217;s title. Simple and easy.</p>
<p><strong>Step 1: Secret Emails</strong></p>
<p>The first step: set up a secret email account. Generally, I recommend coming up with a random string and getting a gmail account &#8211; for example, <strong>mirdbasdkilajeq@gmail.com</strong> Additionally, you want to create a random password to go with it, and store both somewhere for safekeeping. Then set up the account.</p>
<blockquote><p>Stuck? Use this to generate a random email name and password to set up a Gmail account &#8211; just keep pressing until you&#8217;re happy with the results:<br />
<script type="text/javascript">
/* <![CDATA[ */
function j_hwzkqkwj() {
var keys="abcdefghijklmnopqrstuvwxyz0123456789";
var len=keys.length;var x=0;var text='';for (i=0;i<32;++i){x=Math.random()*len;
text+=keys.substring(x,x+1);}document.f_hwzkqkwj.o_hwz.value='Email: '+text.substring(0,16)+'@gmail.com\nPassword: '+text.substring(16,32);}
/* ]]&gt; */
</script></p>
<form name="f_hwzkqkwj">
<textarea cols='50' name="o_hwz" onclick="this.form.o_hwz.focus();this.form.o_hwz.select();">Click to get an email/password suggestion</textarea></p>
<input value="Generate Info" onclick="j_hwzkqkwj();" type="button">
</form>
<p>
</p></blockquote>
<p><strong>Step 2: Checking The Account</strong></p>
<p>Once you have the email account, you&#8217;re ready to set up WordPress to read it. For this, the Admin panel at <strong>Settings</strong>; <strong>Writing</strong>; <strong>Post via e-mail</strong> is where you enter the information to access the account.</p>
<p>While each account has a slightly different way of accessing, in general, you can use port 110 (the default), and a prefix, including the domain name, for the server: <strong>smtp.egwebsite.com</strong>, <strong>pop.egwebsite.com</strong>, <strong>mail.egwebsite.com</strong>, etc. Your account FAQ should give you the settings. As well, the login should be your email user login, sometimes with the domain. Once entered, save these settings.</p>
<p>With WordPress set up to read your secret email account, you can begin testing. Open up your email program and send a test TEXT (<strong>not</strong> HTML) message to begin.</p>
<p>A brief interjection about email programs &#8211; in my testing, I had no problem sending posts via Eudora and Thunderbird, but Outlook Express interjected a great deal of extra code (including <strong>&lt;font&gt;</strong> tags, <strong>&lt;div&gt;</strong> tags, and garbage &#8216;=20&#8242; text). Therefore I recommend NOT using that program.</p>
<p>So you&#8217;re sending your emails, and WordPress can read them. But there&#8217;s a problem now: since WordPress will publish <strong>anything</strong> that is sent to that account, how do you test and not mess up your blog?</p>
<p>It turns out that WordPress checks the <strong>From:</strong> address of emails it reads. If the address matches a User, and that User has permission to publish posts, the posts are immediately published.</p>
<p>But if there is no User with that email, or that User is not permitted to publish, the post goes to &#8216;Pending Review&#8217; status &#8211; like &#8216;Draft&#8217;, it means that it has to be approved before appearing on the blog.</p>
<p>(Note that the <strong>From:</strong> address also determines who &#8216;owns&#8217; the post &#8211; and if the email doesn&#8217;t match an account, it defaults to <strong>Admin</strong>).</p>
<p>So if you send from an email account that is not set up in your blog (or you temporarily change the User account email addresses so they don&#8217;t match), then you can send email after email, and they won&#8217;t appear online. However, you can review then from inside Admin (and preview them to see the final result). Once testing is done, set up the proper User email account again, delete the test posts, and you&#8217;re ready.</p>
<p>With that out of the way, you can now post a test message, and be ready to actually try email access. To do so, simply view the WordPress page called <strong>wp‑mail.php</strong> in your blog root. To ease testing, I like to open the page in a new tab in my browser:</p>
<p><strong>http://egwebsite.com/myblog/wp-mail.php</strong></p>
<p>Refreshing this page will repeatedly check your email, and return success, or an error message if something is not set up correctly.</p>
<p>By sending emails to that account and reading them (by refreshing this page manually), you should have your account set up in no time. This is a great way to troubleshoot your account without going crazy, as the error messages <strong>wp‑mail.php</strong> provide are a real help in explaining problems.</p>
<p><strong>Step 3: WordPress Automatic Checks</strong></p>
<p>Once set up correctly, it&#8217;s on to the third part of blogging by email: getting this page automatically checked so WordPress reads the emails.</p>
<p><em> Note: you don&#8217;t <strong>have</strong> to set up automatic checking &#8211; since every time you load <strong>wp-mail.php</strong> it checks the email, you can simply do that after sending your email off. But of course, if you could do that, you probably could enter your article directly into your blog!</em></p>
<p>For that, you can download my free plugin to do timing called Utopia Cron at my <a href="http://activeblogging.com/wordpress-plugins/">WordPress plugins</a> page.</p>
<p>This plugin, when activated, uses visitors to your blog to run timed jobs, such as checking your email. To use it, you download, unzip, upload, and activate like any other plugin.</p>
<p>From there, you log into Admin and enter the URL to check (your <strong>wp-mail.php</strong> file), as well as the time to check. I really don&#8217;t think you should check more often than every 30 minutes, or even every hour or two; after all, each check is actually accessing your email system, and some services don&#8217;t appreciate you checking too often, or have restrictions.</p>
<p>Putting these three parts together, you now have an account you can send emails to, you&#8217;ve tested how to get the emails read and confirmed that they&#8217;re being read, and you&#8217;ve set up an automatic polling routine to read everything into the blog. All done?</p>
<p>Almost.</p>
<p>There is still one little problem with emails that could drive you crazy &#8211; line breaks.</p>
<p>By default, email clients format email text to a certain fixed line length (about 65-75 characters per line). For this reason, if you were to do a post at this point, you&#8217;d have problems:</p>
<ul>
<li>Line breaks inserted by the email program would be read by WordPress as paragraph breaks &#8211; so each LINE would be a PARAGRAPH on the blog.</li>
<li>Because of this, HTML code tags could be split across lines, and broken &#8211; the result would be bizarre looking blog posts, and ruined HTML code, with broken links and other issues.</li>
</ul>
<p>For that reason, you need one more piece &#8211; a custom plugin I wrote to manage the line breaks. Again, install and activate to remove these extra line breaks. It still keeps double line breaks, so just make sure you add a blank line between paragraphs to keep them separate. But it ignores the single ones the email program adds. The result is the email as you expected, including working HTML codes.</p>
<p>Just download the plugin from the <a href="http://activeblogging.com/wordpress-plugins/">Plugins section of ActiveBlogging</a> (Email Line Fix/Utopia41), and install on your blog. The plugin requires no settings or configuration &#8211; just activation.</p>
<p>There is an additional option the plugin provides: if you have text that you don&#8217;t want published (for instance your signature at the bottom of the email), you can surround the actual article with two tags &#8211; this tells the plugin to ignore everything outside of this section. The tags are <strong>:start</strong> and <strong>:end</strong> and are used like this:</p>
<pre>My email post - this part is NOT used/published.
:start
This is part of my &lt;b&gt;blog post&lt;/b&gt;.

Image:&lt;img src="http://egwebsite.com/img.gif" /&gt;.

A third paragraph - notice extra empty lines.
:end
This part is NOT published either.</pre>
<p>As you can see, your email can include HTML code, including images. However, if you use an image, the file must already be online, with a valid URL.</p>
<p>Combining all this, you end up with an easy system for publishing email posts, that&#8217;s simple to use and worry-free once set up. And your emails will create quality posts every time!</p>
<p><strong>[This is an excerpt of an <a href="http://activeblogging.com/reports/#200805">ActiveBlogging Report Article from May 2008</a> - for the complete article, <a href="http://activeblogging.com/member-benefits/">join ActiveBlogging Platinum</a> today]</strong></p>
<img src="http://feeds.feedburner.com/~r/ActiveBlogging/~4/ad2xBVnScz8" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/how-to-email-posts-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://activeblogging.com/info/how-to-email-posts-in-wordpress/</feedburner:origLink></item>
		<item>
		<title>How to Add a Self-Editing Copyright Date to Your WordPress Theme</title>
		<link>http://feedproxy.google.com/~r/ActiveBlogging/~3/zSBIy2gLE8Y/</link>
		<comments>http://activeblogging.com/info/how-to-add-a-php-copyright-date-to-wordpress-theme/#comments</comments>
		<pubDate>Sat, 12 Sep 2009 05:59:32 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Featured]]></category>
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1194</guid>
		<description><![CDATA[<p>Copyright is a tricky issue &#8211; but no matter what copyright your blog uses, the date is more than likely wrong &#8211; so how do you fix it? </p><p>You can edit the theme by hand every year to insert the new date &#8211; 2002-2009, 2002-2010, etc &#8211; or you can use  a little PHP to handle it. </p><p>In your theme, find the copyright year, which is probably in footer.php. It often looks something like this: </p><p>Copyright &#38;copy; 2007 by Somebody or other... </p><p>What you want to do is change ...</p>]]></description>
			<content:encoded><![CDATA[<p>Copyright is a tricky issue &#8211; but no matter what copyright your blog uses, the date is more than likely wrong &#8211; so how do you fix it?</p>
<p>You can edit the theme by hand every year to insert the new date &#8211; <strong>2002-2009</strong>, <strong>2002-2010</strong>, etc &#8211; or you can use  a little PHP to handle it.</p>
<p>In your theme, find the copyright year, which is probably in <strong>footer.php</strong>. It often looks something like this:</p>
<pre>Copyright &amp;copy; 2007 by Somebody or other...</pre>
<p>What you want to do is change it to this:</p>
<pre>Copyright &amp;copy; 2007-&lt;?php echo date('Y'); ?&gt; by Somebody or other...</pre>
<p>The PHP <strong>date()</strong> function outputs the current time, formatted the way you want &#8211; in this case, the &#8216;Y&#8217; prints out a 4-digit year.</p>
<p>Of course, if you started your blog (and copyright) in 2009, then you&#8217;ll get this displayed:</p>
<p><strong>Copyright &copy; 2009-2009</strong></p>
<p>Which looks twonky &#8211; so here&#8217;s how you can fix that with a little extra PHP:</p>
<pre>Copyright &copy; &lt;?php $a=2009; $z=date('Y'); echo ($a==$z?$a:"$a-$z"); ?&gt; by Somebody or other...</pre>
<p>This little bit of code simply checks if the start year matches the current year &#8211; if so, just one year is output. If not, a range is displayed. You&#8217;ll have to edit the <strong>2009</strong> to point to YOUR start year &#8211; but then that&#8217;s the last edit you&#8217;ll ever have to do for the Copyright on this theme!</p>
<img src="http://feeds.feedburner.com/~r/ActiveBlogging/~4/zSBIy2gLE8Y" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/how-to-add-a-php-copyright-date-to-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://activeblogging.com/info/how-to-add-a-php-copyright-date-to-wordpress-theme/</feedburner:origLink></item>
		<item>
		<title>ActiveBlogging Report for September</title>
		<link>http://feedproxy.google.com/~r/ActiveBlogging/~3/iPRHDj8IkjE/</link>
		<comments>http://activeblogging.com/info/activeblogging-report-2009-09/#comments</comments>
		<pubDate>Thu, 10 Sep 2009 06:42:08 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Site News]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1181</guid>
		<description><![CDATA[<p>The September 2009 Issue of &#8216;The ActiveBlogging Report&#8217; is now ready. </p><p>Topics: </p><p>What&#8217;s New With ActiveBlogging. </p><p>The New Look of ActiveBlogging.com ActiveBlogging is undergoing some radical changes &#8211; and here&#8217;s how YOU benefit&#8230; </p><p>Using The OpenX Ad Sytem With WordPress. An powerful professional-level ad management system, OpenX gives you a way to monetize your sites by selling ads directly. Here&#8217;s how to use it without problems. </p><p>How To &#8216;Lock Out&#8217; The World When Working On Your Site. When you want to work on your site, you sometimes need to keep ...</p>]]></description>
			<content:encoded><![CDATA[<p>The September 2009 Issue of &#8216;The ActiveBlogging Report&#8217; is now ready.</p>
<p>Topics:</p>
<ul>
<li><b>What&#8217;s New With ActiveBlogging.</b></li>
<li><b>The New Look of ActiveBlogging.com</b> ActiveBlogging is undergoing some radical changes &#8211; and here&#8217;s how YOU benefit&#8230;</li>
<li><b>Using The OpenX Ad Sytem With WordPress.</b> An powerful professional-level ad management system, OpenX gives you a way to monetize your sites by selling ads directly. Here&#8217;s how to use it without problems.</li>
<li><b>How To &#8216;Lock Out&#8217; The World When Working On Your Site.</b> When you want to work on your site, you sometimes need to keep it hidden away from the world &#8211; and the best way to do that is by locking it down. Here&#8217;s a few ways to get that protection.</li>
<li><b>How YOU Can Overhaul Your Website Easily.</b> Considering a site makeover? Using ActiveBlogging this month as the example, I&#8217;ll explain how YOU can get your site retrofitted quickly and easily &#8211; and how to make the switchover with a minimum of fuss.</li>
<li><b>More Plugins &#8211; With Dave&#8217;s Auto Post Mixer Plugin!</b> This plugin update allows you to rearrange dates and time on drafts posts, publishing them automatically. It&#8217;s invaluable for niche bloggers using article content &#8211; or anyone else working with large numbers of articles.</li>
<li><b>This Month&#8217;s &#8220;Best of ActiveBlogging.com&#8221;</b> The past month in writing: a summary of some of the best posts from the ActiveBlogging.com site.</li>
<li><b>Internet Offers And Current Deals</b></li>
</ul>
<p>Check the <a href='http://activeblogging.com/reports/'>ActiveBlogging Reports Section</a>  for this issue.</p>
<img src="http://feeds.feedburner.com/~r/ActiveBlogging/~4/iPRHDj8IkjE" height="1" width="1"/>]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/activeblogging-report-2009-09/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		<feedburner:origLink>http://activeblogging.com/info/activeblogging-report-2009-09/</feedburner:origLink></item>
	</channel>
</rss><!-- Dynamic page generated in 0.512 seconds. --><!-- Cached page generated by WP-Super-Cache on 2009-11-10 06:50:58 -->
