<?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/"
	>

<channel>
	<title>ActiveBlogging &#187; Blogging</title>
	<atom:link href="http://activeblogging.com/info/category/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://activeblogging.com</link>
	<description>The Knowledge You Need For The Blog You Want</description>
	<lastBuildDate>Tue, 31 Jan 2012 18:11:49 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>How To Escape A Shortcode</title>
		<link>http://activeblogging.com/info/how-to-escape-a-shortcode/</link>
		<comments>http://activeblogging.com/info/how-to-escape-a-shortcode/#comments</comments>
		<pubDate>Wed, 20 Jul 2011 14:28:03 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[How To]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1932</guid>
		<description><![CDATA[<p>Shortcodes are little codes that plugin developers can use to add features, generally in the article text. For example, my post on syntax highlighting required custom shortcodes for language display (like &#91;c]). </p><p>Here&#8217;s the problem: since shortcodes are meant to DO something, how do you go about documenting them? </p><p>Well, one option is to use a double entry, like this: </p><p>&#91;&#91;c]] </p><p>WordPress understands that you are not using a shortcode, simply displaying it, and it will correct the issue, giving you the display of &#91;c], and no activating. </p><p>However, what if ...</p>]]></description>
			<content:encoded><![CDATA[<p>Shortcodes are little codes that plugin developers can use to add features, generally in the article text. For example, <a href="http://activeblogging.com/info/formatted-source-code-plugin/">my post on syntax highlighting</a> required custom shortcodes for language display (like &#91;c]).</p>
<p>Here&#8217;s the problem: since shortcodes are meant to DO something, how do you go about <em>documenting</em> them?</p>
<p>Well, one option is to use a double entry, like this:</p>
<p>&#91;&#91;c]]</p>
<p>WordPress understands that you are not using a shortcode, simply displaying it, and it will correct the issue, giving you the display of &#91;c], and no activating.</p>
<p>However, what if the relevant plugin is missing? In this case, if I tried to use the doubled code without the plugin active, I&#8217;d get both pairs of brackets &#8211; very messy.</p>
<p>So, plugin active, <strong>&#91;&#91;&#8230;]]</strong> works, plugin inactive, <strong>&#91;&#91;&#8230;]]</strong>  doesn&#8217;t work (and remember, that&#8217;s only for relevant plugins &#8211; if another plugin has another shortcode, then <em>that</em> plugin controls whether that shortcode displays right).</p>
<p>Of course, that&#8217;s annoying, and in fact there&#8217;s a few complaints about this feature in <a href="http://core.trac.wordpress.org/ticket/6518" target='_blank'>WordPress bug tracking</a>. But that doesn&#8217;t help us right now.</p>
<p>For example, <a href="http://activeblogging.com/info/formatted-source-code-plugin/">the last article</a> described how to use a specific group of shortcodes. But the plugin wasn&#8217;t set up on this blog. However, if I later set it up, all those code examples would become &#8216;live&#8217;, and I&#8217;d end up with accidentally formatted normal text.</p>
<p>The only solution so far? Use an HTML entity for the left bracket, <strong>&amp;#91;</strong></p>
<p>&amp;#91;c]just an example, no &#8216;working&#8217; here!&amp;#91;/c]</p>
<p>This breaks the shortcode scanning routine, preventing it from being used. Note that the one character is enough, you needn&#8217;t do it for the right bracket as well (but if you did, the code is &amp;#93;)</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/how-to-escape-a-shortcode/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Include Source Code In Blog Posts Easily With This Nifty WordPress Plugin</title>
		<link>http://activeblogging.com/info/formatted-source-code-plugin/</link>
		<comments>http://activeblogging.com/info/formatted-source-code-plugin/#comments</comments>
		<pubDate>Tue, 19 Jul 2011 14:35:28 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[WordPress Tech]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1914</guid>
		<description><![CDATA[<p>On one of my other blogs I post a lot of source code &#8211; code that others can copy and use. And sometimes it can be a chore &#8211; until now. </p><p>For quite some time I&#8217;ve used the old fashioned way of adding code &#8211; work in the HTML editor, the switch to the Visual editor and paste in code so that it formats it &#8220;HTML safe&#8221; (like changing the test &#8216;less than&#8217; in code from &#60; to &#38;lt;) </p><p>But with a new plugin, my code can be quickly formatted ...</p>]]></description>
			<content:encoded><![CDATA[<p>On one of my other blogs I post a lot of source code &#8211; code that others can copy and use. And sometimes it can be a chore &#8211; until now.</p>
<p>For quite some time I&#8217;ve used the old fashioned way of adding code &#8211; work in the HTML editor, the switch to the Visual editor and paste in code so that it formats it &#8220;HTML safe&#8221; (like changing the test &#8216;less than&#8217; in code from <strong>&lt;</strong> to <strong>&amp;lt;</strong>)</p>
<p>But with a new plugin, my code can be quickly formatted to look right for a variety of computer languages, and with minimal fuss. For example, in C/C++ code I just wrap the code with &#91;c]&#8230;&#91;/c] and the  formatting is done for me, including line numbers and color coding.</p>
<p>To view it, drop by just about any page on my <a href="http://UtopiaMechanicus.com" title="source code and technical projects">tech blog UtopiaMechanicus.com</a> (I write  a lot of code examples there). The display for each code section is almost entirely up to the plugin &#8211; I only added the surrounding code entries, and of course, changed the settings to suit my blog (dark background colors, for instance).</p>
<p>To give it a try:</p>
<ul>
<li>Search on &#8220;SyntaxHighlighter Evolved&#8221; in your Admin <strong>Plugins; Add New</strong> tab.</li>
<li>Install and go to its settings.</li>
<li>Adjust them to suit (if at all).</li>
</ul>
<p>Add code with the encircling tags (and NO switching to the Visual editor). As I mentioned, &#91;c] and &#91;/c] are C/C++; &#91;php] is for PHP, and so on (the plugin links you to a list of codes if you need a different one).</p>
<p>The plugin has so far jazzed up my pages and made maintenance easier. If you have a lot of source code (of any language), consider adding it to your site &#8211; and format more easily!</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/formatted-source-code-plugin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Site Visitor Counter Widget</title>
		<link>http://activeblogging.com/info/site-visitor-counter-widget/</link>
		<comments>http://activeblogging.com/info/site-visitor-counter-widget/#comments</comments>
		<pubDate>Fri, 15 Jul 2011 13:57:44 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Site News]]></category>
		<category><![CDATA[WordPress News]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1881</guid>
		<description><![CDATA[<p>One of my oldest bits of PHP code is a site counter. In the early days (pre-2000) these little counters were an advertisement about how popular a site was. And despite better data analysis like Google Analytics and server logs, people still get a kick out of the lowly visitor counter. </p><p>So, I&#8217;ve updated the counter, and turned it into a widget &#8211; which makes it much easier to use, and compatible with any widget-enabled theme, so you can place it anywhere your heart designs. </p><p>(And I know people want ...</p>]]></description>
			<content:encoded><![CDATA[<p>One of my oldest bits of PHP code is a site counter. In the early days (pre-2000) these little counters were an advertisement about how popular a site was. And despite better data analysis like Google Analytics and server logs, people still get a kick out of the lowly visitor counter.</p>
<p>So, I&#8217;ve updated the counter, and turned it into a widget &#8211; which makes it much easier to use, and compatible with any widget-enabled theme, so you can place it anywhere your heart designs.</p>
<p>(And I <strong>know</strong> people want it easy to use &#8211; here&#8217;s a <a href="http://www.utopiamechanicus.com/37/wordpress-visitor-counter/">censored email</a> I once received from a &#8216;fan&#8217;).</p>
<p>For more information on using and downloading it, you can visit the <a href="http://activeblogging.com/sitecounterwidget/" title="page view counter widget plugin">plugin&#8217;s page here</a>.</p>
<p>By the way, the code was part of a larger tutorial in the <a href="http://activeblogging.com/reports/#201106">June 2011 issue</a> of The ActiveBlogging Report entitled &#8220;Widget Fundamentals: You CAN Write Your Own Widget!&#8221; If you&#8217;re a member, you can read how to create a widget very easily, starting with our lowly counter!</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/site-visitor-counter-widget/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Write WordPress/Blog Articles That Get SEO Traffic &#8211; Title Tips</title>
		<link>http://activeblogging.com/info/seo-title-write-tips-wordpress-blog/</link>
		<comments>http://activeblogging.com/info/seo-title-write-tips-wordpress-blog/#comments</comments>
		<pubDate>Tue, 12 Jul 2011 14:57:07 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=1854</guid>
		<description><![CDATA[<p>Wordy title, huh? The sad fact of the matter is that the online world is dominated by search engines. And if you want search engine traffic, you have to follow their rules. </p><p>And unfortunately, their rules don&#8217;t give one whit about quality of writing, or value as prose &#8211; they only care about keywords. </p><p>What are keywords? They&#8217;re the most important words you use when you search on something. When you want to know more about Justin Timberlake, is that all you type? Not likely &#8211; the information out there ...</p>]]></description>
			<content:encoded><![CDATA[<p>Wordy title, huh? The sad fact of the matter is that the online world is dominated by search engines. And if you want search engine traffic, you have to follow <em>their</em> rules.</p>
<p>And unfortunately, their rules don&#8217;t give one whit about quality of writing, or value as prose &#8211; they only care about <strong>keyword</strong>s.</p>
<p>What are keywords? They&#8217;re the most important words you use when you search on something. When you want to know more about Justin Timberlake, is that all you type? Not likely &#8211; the information out there is too vast. So you narrow it down with words you think will help your search: &#8216;Justin Timberlake concert listings&#8217; for example.</p>
<p>And that&#8217;s keywords &#8211; what people need to type in to find what they want &#8211; and that&#8217;s hopefully you.</p>
<p>For example, look at my title &#8211; can you imagine people typing in &#8216;how do I get traffic to my blog&#8217;, or &#8216;How to write SEO wordpress&#8217; (SEO = Search Engine Optimized)? A good title tells people what to expect, but also uses the keywords you expect them to look with. If I had instead said something quirky like &#8216;Zen and the Art of Title Creation&#8217; I&#8217;d have an interesting title, but totally useless for search engines &#8211; and ultimately, for searching.</p>
<p>There&#8217;s some times you can break these rules: for example, if you are so popular that people link to you and visit you directly, rarely using search engines at all. But even in those cases, it doesn&#8217;t hurt to have a keyword oriented title, so it&#8217;s worth practicing the habit: ask yourself what people would search on to find this article, and then tweak the title to fit.</p>
<p>For most of us, search engines (and user searches) are key to getting website traffic. The resulting writing as a whole may lack panache, vibrancy, or zing, but at least Yahoo, Bing and Google will find us&#8230;</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/seo-title-write-tips-wordpress-blog/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Twitter And The &#8216;Cisco Fatty&#8217; &#8211; Why Twitter Is The New Blogging</title>
		<link>http://activeblogging.com/info/twitter-and-the-cisco-fatty/</link>
		<comments>http://activeblogging.com/info/twitter-and-the-cisco-fatty/#comments</comments>
		<pubDate>Tue, 07 Apr 2009 14:56:41 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=646</guid>
		<description><![CDATA[<p>Recently a young women made a small faux pas, and complained about a job she wasn&#8217;t sure she wanted: </p><p>Cisco just offered me a job! Now I have to weigh the utility of a fatty paycheck against the daily commute to San Jose and hating the work. </p><p>Unfortunately, it wasn&#8217;t to just her friends &#8211; it was to her friends via Twitter. As well, she didn&#8217;t broadcast ONLY to her friends, she broadcast globally, so everyone heard it. </p><p>Apparently including Cisco, with a helpful person there named Tim Levad who ...</p>]]></description>
			<content:encoded><![CDATA[<p>Recently a young women made a small faux pas, and complained about a job she wasn&#8217;t sure she wanted:</p>
<blockquote><p>Cisco just offered me a job! Now I have to weigh the utility of a fatty paycheck against the daily commute to San Jose and hating the work.</p></blockquote>
<p>Unfortunately, it wasn&#8217;t to just her friends &#8211; it was to her friends via Twitter. As well, she didn&#8217;t broadcast ONLY to her friends, she broadcast globally, so everyone heard it.</p>
<p>Apparently including Cisco, with a helpful person there named Tim Levad who decided to lend a hand:</p>
<blockquote><p>Who is the hiring manager. I’m sure they would love to know that you will hate the work. We here at Cisco are versed in the web.</p></blockquote>
<p>It blew up from there. Now dubbed the &#8220;Cisco Fatty&#8221;, she of course did not get the job, and is now looking elsewhere.</p>
<p>And while I can only guess what set people off, I expect having someone complaining about a job offer at Cisco via Twitter is bad; somewhat on par with Barack Obama complaining about how hard it is to run the country at a Republican Party benefit.</p>
<p>(For those not in the know, Cisco is heavily into Internet connectivity, providing the routers that hook up the Internet. Along with AOL, they were one of the success stories of the 90s, and as you can imagine, they can just about print money at this point. So, many Twitter-loving tech geeks would jump to work there, unless Google wises up and hires them first).</p>
<p>It seems an honest mistake (and reading <a href="http://www.theconnor.net/">her new blog</a> on the topic, she seems sincere), but I have to ask, is this a stupid blunder, or a calculated plan?</p>
<p>Either way, it&#8217;s obvious now that Twitter is going the way of Blogs, warts and all.</p>
<p>Moreover, it&#8217;s even better &#8211; now there&#8217;s no need to write anything logical, cogent, or lengthy &#8211; as a quick check of Twitter will tell you. After all, one of the annoying aspects of blogging was you had to actually WRITE something &#8211; now with Twitter, you can do little more than a textual burp, yet tell everyone you write online.</p>
<p>In fact, I&#8217;m already resenting the 380+ words I&#8217;ve written here &#8211; on Twitter I could mumble for about 20 words, and probably not even spell check&#8230;</p>
<p>&#8230;maybe Twitter has some benefits, after all.</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/twitter-and-the-cisco-fatty/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Commenting On Blogs: Comments and Commenting Etiquette</title>
		<link>http://activeblogging.com/info/blogs-and-commenting-etiquette/</link>
		<comments>http://activeblogging.com/info/blogs-and-commenting-etiquette/#comments</comments>
		<pubDate>Mon, 09 Mar 2009 15:21:52 +0000</pubDate>
		<dc:creator>David Pankhurst</dc:creator>
				<category><![CDATA[Blogging]]></category>

		<guid isPermaLink="false">http://activeblogging.com/?p=594</guid>
		<description><![CDATA[<p>On most WordPress blogs there exists the comments form &#8211; and on that form is a unique opportunity to hear from visitors. </p><p>Unfortunately, the percentage of good comments versus spam (the &#8220;signal to spam&#8221; ratio) is very low &#8211; because the more popular a blog gets, the more spam comes in (I won&#8217;t mention how much spam I used to clean out daily &#8211; it&#8217;s just too depressing). </p><p>However, for those of us considering a comment, here or anywhere, it&#8217;s time to explain how to comment &#8211; with a very ...</p>]]></description>
			<content:encoded><![CDATA[<p>On most WordPress blogs there exists the comments form &#8211; and on that form is a unique opportunity to hear from visitors.</p>
<p>Unfortunately, the percentage of good comments versus spam (the &#8220;signal to spam&#8221; ratio) is very low &#8211; because the more popular a blog gets, the more spam comes in (I won&#8217;t mention how much spam I used to clean out daily &#8211; it&#8217;s just too depressing).</p>
<p>However, for those of us considering a comment, here or anywhere, it&#8217;s time to explain how to comment &#8211; with a very few simple tips:</p>
<ul>
<li><strong>Stay on topic.</strong> I frequently get comments that have nothing to do with the post they are posting on &#8211; a sure sign that a program is &#8216;writing&#8217; them. </li>
<li><strong>Forget &#8220;Hi&#8221;, &#8220;I&#8217;m new here&#8221;, and other bland comments.</strong> Generic comments go &#8211; period. This is not rude &#8211; it&#8217;s a fact of life. Too many spam machines will say something like &#8220;great comment, I&#8217;ve added your blog to my list&#8221; as if we&#8217;re going to be moved with gratitude and publish it for all the world to see. If you do the same, expect to look like a machine &#8211; which WILL be the case.</li>
<li><strong>Don&#8217;t ask inane questions.</strong> Further on the machine versus person aspect, don&#8217;t ask something that doesn&#8217;t fit. I get many comments about how to add my blog to their RSS feed, or how to write. That&#8217;s what blog <strong>Contact Forms</strong> are for &#8211; and if they can&#8217;t figure that out, perhaps there is NO answer you could give them that would help.</li>
<li><strong>Leave links out!</strong> I know comments promote your site &#8211; and I know it&#8217;s an important part of your link strategy (and I use a &#8216;DoFollow&#8217; plugin so you&#8217;ll get proper credit for it). But insert a few links into the post and don&#8217;t be surprised if it gets dumped. In fact, I actually wrote a <a href="http://activeblogging.com/wordpresscommentkiller">WordPress plugin to automatically delete comments</a> with too many links, so I don&#8217;t have to wade through so many &#8216;linky&#8217; ones. You&#8217;ll get your one site link when you enter your comment &#8211; so don&#8217;t get greedy.</li>
<li><strong>Please give up the conversation &#8211; eventually.</strong> I like threaded comments, and a conversational give and take. But if the person just doesn&#8217;t &#8216;get it&#8217;, and asks the same questions, slightly rephrased, again and again, then I have to stop accepting them. Sorry, but the blog is for everyone, not just one visitor with a particular axe to grind.</li>
<li><strong>Keep slander away.</strong> A company with big pockets can sue over slander and libel &#8211; and guess who they&#8217;ll sue? The anonymous poster, or me, the blog site owner? It&#8217;s a no-brainer, so if your brain wishes to share a tasty comment or two about anyone, don&#8217;t, or this brain will be deleting them.</li>
<li><strong>Be nice (or, &#8220;Do you blog to your mother with that mouth?&#8221;).</strong> Profanity is popular &#8211; and it&#8217;s a clear sign that the writer doesn&#8217;t know what a thesaurus is used for. Enjoy the swearing if you must &#8211; but if you prefer being SEEN, then express yourself with a larger (and politer) vocabulary.</li>
<li><strong>Run cool.</strong> There&#8217;s something about online writing that brings out the aggressiveness. I&#8217;ve seen comments (not on my blog, thankfully) that would get people punched in real life. Don&#8217;t go there &#8211; arguing a position calmly and logically works better in the long run. And if the other side doesn&#8217;t want to play fair, walk away.</li>
</ul>
<p>That&#8217;s just a few points &#8211; of course, <strong>YOU</strong> don&#8217;t have to worry about them, but the average commenter does. Remember that comments you make elsewhere can help promote your site, but they are first and foremost opinions destined for the other person&#8217;s site.</p>
<p>And just like visiting someone&#8217;s house, make sure to wipe your feet, don&#8217;t step on the cat, and keep the insults about the mother in law to a minimum &#8211; and you&#8217;ll likely be welcomed back with open arms!</p>
]]></content:encoded>
			<wfw:commentRss>http://activeblogging.com/info/blogs-and-commenting-etiquette/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

