<?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>Digital Notions &#187; Blogging  | Digital Notions</title>
	<atom:link href="http://digitalnotions.net/category/blogging/feed/" rel="self" type="application/rss+xml" />
	<link>http://digitalnotions.net</link>
	<description>Photography, Blogging, WordPress and SEO</description>
	<lastBuildDate>Wed, 02 Feb 2011 04:53:55 +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>Multi-line Captions in WordPress</title>
		<link>http://digitalnotions.net/multi-line-captions-in-wordpress/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=multi-line-captions-in-wordpress</link>
		<comments>http://digitalnotions.net/multi-line-captions-in-wordpress/#comments</comments>
		<pubDate>Mon, 10 Jan 2011 05:09:10 +0000</pubDate>
		<dc:creator>Mark Wood</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Comments]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Caption]]></category>
		<category><![CDATA[wp_caption]]></category>

		<guid isPermaLink="false">http://digitalnotions.net/?p=1575</guid>
		<description><![CDATA[As my wife and I were each posting our daily photos this afternoon, she asks me to help her put a two line caption under one of her photos. Being somewhat knowledgable about such things, I tell her that I&#8217;d be happy to help. And what should have been a very simple task, turned into [...]]]></description>
			<content:encoded><![CDATA[<p>As my wife and I were each posting our daily photos this afternoon, she asks me to help her put a two line caption under one of her photos.  Being somewhat knowledgable about such things, I tell her that I&#8217;d be happy to help.  And what <strong>should</strong> have been a very simple task, turned into an hour and a half of messing around and re-writing the captioning capabilities in WordPress.</p>
<p>Let me start with a little background.  First, let me acknowledge that WordPress is a great blogging platform for text.  And I have seen some really beautiful photography blogs created on this platform.  But what most people don&#8217;t realize is that these photo-blogging themes have a ton of custom code.  Out of the box, WordPress is still absolutely awful with regards to text mixed with media.  And I do realize that they&#8217;ve been constantly updating things, but it&#8217;s frankly still a crude environment.</p>
<p>The multi-line captions are a good example.  While WordPress 2.5 added the ability to have captions, instead of building it into the user interface and allowing the user / writer to create content to be used as a caption, they instead decided to have the photo import interface add an odd caption shortcode which WordPress will later replace with actual HTML.  What this means is that unless you want to modify WordPress core files (a very bad idea since you&#8217;d have to do it every time you upgraded WordPress), you&#8217;re stuck trying to fix captions within the bounds of their already lacking system.</p>
<p>So, without further rambling, here&#8217;s the long and the short of fixing the captioning system (a little bit).</p>
<h4>Current Implementation (WordPress 2.5+)</h4>
<p>Before fixing the captions, we need to understand exactly how it works out of the box.  When you go to insert a photo into a post, if you type anything in the caption dialog, WordPress will insert an image surrounded by a &#8220;caption&#8221; shortcode.  It goes through and replace this caption shortcode with actual HTML when it&#8217;s requested by a reader.  However, instead of taking a block of text and including it, all it takes is one lousy string that can&#8217;t have anything but text.</p>
<h4>Allowing Multiline Captions</h4>
<p>Due to the existing implementation, there is really only so much we can work with.  We need to take the caption and break it into multiple lines, but remember, WordPress won&#8217;t store more than a string for the caption.  To fix this, I decided that I&#8217;d insert line breaks into the caption based on a text string &#8212; in my case, I chose the &#8220;|&#8221; symbol as I don&#8217;t ever see it being used in a caption.  You can replace it with whatever you like. </p>
<p>To override the existing caption code, edit your theme&#8217;s functions.php file and add the following code (note, clicking on the left-most button in the top right of the code box will open the source in an editor &#8212; perfect for copying and pasting).</p>
<pre class="brush: php">
/*
*********************************************
  Function to allow multi-line photo captions.
  This function will split captions onto multiple lines if it detects
  a &quot;|&quot; (pipe) symbol.
**********************************************
*/
/* Override existing caption shortcode handlers with our own */
add_shortcode(&#039;wp_caption&#039;, &#039;multiline_caption&#039;);
add_shortcode(&#039;caption&#039;, &#039;multiline_caption&#039;);

/* Our new function */
function multiline_caption($attr, $content = null) {
	extract(shortcode_atts(array(
		&#039;id&#039;	=&gt; &#039;&#039;,
		&#039;align&#039;	=&gt; &#039;alignnone&#039;,
		&#039;width&#039;	=&gt; &#039;&#039;,
		&#039;caption&#039; =&gt; &#039;&#039;
	), $attr));

	if ( 1 &gt; (int) $width || empty($caption) )
		return $content;

	if ( $id ) $id = &#039;id=&quot;&#039; . esc_attr($id) . &#039;&quot; &#039;;

 	$new_caption = str_replace(&quot;|&quot;, &quot;&lt;br /&gt;&quot;, $caption);

	return &#039;&lt;div &#039; . $id . &#039;class=&quot;wp-caption &#039; . esc_attr($align) . &#039;&quot; style=&quot;width: &#039; . (10 + (int) $width) . &#039;px&quot;&gt;&#039;
	. do_shortcode( $content ) . &#039;&lt;p class=&quot;wp-caption-text&quot;&gt;&#039; . $new_caption . &#039;&lt;/p&gt;&lt;/div&gt;&#039;;
}
</pre>
<p>With this done, all that was left was to edit the caption of the desired photo with something like this: &#8220;First line of caption.|Second line of caption&#8221;.  </p>
<h4>Additional Resources</h4>
<p>In searching the web for a solution, I found everything but what I needed.  However, I did find some good resources for WordPress captions in general.</p>
<ul>
<li><a href="http://wordpress.org/support/topic/add-new-caption-shortcode-attribute">WordPress Forum Post discussion modifying captions.</a></li>
<li><a href="http://codex.wordpress.org/Shortcode_API">The WordPress Codex &#8212; Official Shortcode API</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://digitalnotions.net/multi-line-captions-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>13</slash:comments>
		</item>
		<item>
		<title>I&#8217;ve been listed on Cool Photoblogs</title>
		<link>http://digitalnotions.net/ive-been-listed-on-cool-photoblogs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=ive-been-listed-on-cool-photoblogs</link>
		<comments>http://digitalnotions.net/ive-been-listed-on-cool-photoblogs/#comments</comments>
		<pubDate>Sat, 06 Feb 2010 01:57:28 +0000</pubDate>
		<dc:creator>Mark Wood</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Photos]]></category>
		<category><![CDATA[Photo Blogging]]></category>
		<category><![CDATA[Photography]]></category>

		<guid isPermaLink="false">http://digitalnotions.net/?p=1058</guid>
		<description><![CDATA[I was looking around at some of the really good photoblogs out there on the net and I ran across some which had won the Photoblog Awards for different years.  While I&#8217;m really not thinking that my humble place here in cyberspace is worthy of such an honor, I did want to point out that [...]]]></description>
			<content:encoded><![CDATA[<p>I was looking around at some of the really good photoblogs out there on the net and I ran across some which had won the Photoblog Awards for different years.  While I&#8217;m really not thinking that my humble place here in cyberspace is worthy of such an honor, I did want to point out that they did accept my submission <a href="http://www.coolphotoblogs.com/profile14281">here</a>.</p>
<p>So, if you&#8217;re enjoying my work, or just want to go see other really good photography, check out the above link and either vote for me, or look around!</p>
<p style="text-align: center;"><a href="http://www.coolphotoblogs.com/profile14281"><img style=' display: block; margin-right: auto; margin-left: auto;'  class="aligncenter" src="http://www.coolphotoblogs.com/pa.gif" border="0" alt="Photoblog Awards" width="150" height="50" /></a></p>
]]></content:encoded>
			<wfw:commentRss>http://digitalnotions.net/ive-been-listed-on-cool-photoblogs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do search engines work?</title>
		<link>http://digitalnotions.net/how-do-search-engines-work/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=how-do-search-engines-work</link>
		<comments>http://digitalnotions.net/how-do-search-engines-work/#comments</comments>
		<pubDate>Thu, 28 Jan 2010 05:20:39 +0000</pubDate>
		<dc:creator>Mark Wood</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Google]]></category>
		<category><![CDATA[Metadata]]></category>
		<category><![CDATA[Robots]]></category>
		<category><![CDATA[SEO]]></category>

		<guid isPermaLink="false">http://digitalnotions.net/?p=993</guid>
		<description><![CDATA[Continuing with our Search Engine Optimization (SEO) discussion, it&#8217;s necessary to understand just how search engines see our WordPress sites.  While the computation and algorithms are complicated and proprietary to each search engine, an understanding of the basics gives us the tools needed to optimize our sites. A brief introduction to web crawlers Hopefully, I&#8217;m [...]]]></description>
			<content:encoded><![CDATA[<p>Continuing with our Search Engine Optimization (SEO) discussion, it&#8217;s necessary to understand just how search engines see our WordPress sites.  While the computation and algorithms are complicated and proprietary to each search engine, an understanding of the basics gives us the tools needed to optimize our sites.</p>
<h4>A brief introduction to web crawlers</h4>
<p>Hopefully, I&#8217;m not ruining any fantasies here, but there isn&#8217;t a room full of people at Google looking through web pages and indexing the contents of different sites.  That would require way too many people and cost way too much.  Instead, large search engines generally implement <a href="http://en.wikipedia.org/wiki/Search_engine_robots"><strong>web crawlers</strong></a>, programs which quickly read web page data.  This process called <strong>crawling</strong> or <strong>spidering</strong> generally performs the following actions:</p>
<ol>
<li>Read the prominent* page data on the current page</li>
<li>Read all hyper-links to other web pages and add them to a list of future pages to crawl</li>
<li>Move on to the next web page</li>
</ol>
<p><small>* What a particular crawler deems to be &#8220;prominent&#8221; data depends entirely on the purpose of the crawler</small><span id="more-993"></span></p>
<p>There are a two important things to note here:</p>
<ol>
<li> Once a crawler leaves your site, they may not come back for a while!</li>
<li>Since a crawler follows the links on your page, you had better make sure that the links count (and link to more of your content)</li>
</ol>
<p>Thankfully for us, there is a set of standards which are used a guidelines for these web crawlers (also called <strong>robots</strong>).</p>
<h4>What are these meta robots?</h4>
<p>Spend any time in a web design forum, or browsing through an HTML book and you&#8217;re bound to come across the concept of <strong>meta tags</strong>.  As <a href="http://en.wikipedia.org/wiki/Meta_element">defined by Wikipedia</a>, meta elements are metadata which can be embedded in HTML web pages that provide structured information about the current page.  These elements can include such things as keywords, location data, and content type.</p>
<p>The meta tag we&#8217;re interested in right now is the robots meta tag.  Using this tag carefully, we can specify three important attributes for links on our site**.</p>
<ol>
<li>noindex &#8211; An attribute suggesting that the robot not add the data contained within the tag to the index (or search engine as the case may be)</li>
<li>nofollow &#8211; An attribute suggesting that the robot not add the link contained within the tag to the list of future pages to crawl.</li>
<li>noarchive &#8211; An attribute suggesting that that robot not to store a cached copy of your page.</li>
</ol>
<p><small>**There are more attributes that are search engine specific, but I&#8217;m only covering the major ones here</small></p>
<p>You will recognize a couple things right away.  First, is that I was very careful to use the word <em>suggest</em>.  The author of the robot can choose whether or not to take these suggestions to heart.  Google seems to do a good job of following these suggestions, but I can&#8217;t speak for other search engines.  Second, the malicious user will notice that you can keep the robot from indexing other people&#8217;s sites that are linked to from your page.</p>
<p>Using these meta tags in the heading of a particular page applies them to the whole page.  The syntax is as follows:</p>
<pre class="brush: html">&lt;meta name=&quot;ROBOTS&quot; content=&quot;NOINDEX, NOFOLLOW&quot;&gt;</pre>
<p>For more information, check out this <a href="http://www.robotstxt.org/meta.html">helpful link</a>.</p>
<p>The downside to this method is that you are specifying these properties for the whole page.  While this may be desirable in some instances, more often than not it&#8217;s desirable to specify such attributes on a link by link basis.  We can do that by adding the &#8220;rel&#8221; attribute to the standard link syntax as follows:</p>
<pre class="brush: html">&lt;a rel=&quot;noindex, nofollow&quot; href=&quot;http://google.com&quot;&gt;Google&lt;/a&gt;</pre>
<h4>How to use meta robots for good?</h4>
<p>So here&#8217;s a true story.  This may be a bit embarrassing for yours truly, but in sharing, I hope that I can help others avoid the same mistake.  Earlier this year, I was looking through my Google Webmasters account to see which keywords I was hitting with this site.  (For more information on how to setup Google Webmaster Tools and how to find keywords, see my post entitled <a href="http://digitalnotions.net/what-is-seo/">What is SEO and why do I need it?</a>)  I was a bit surprised to notice that my my number one keyword was &#8220;RSS&#8221;.  Clearly, being a Photography / Blogging site, this wasn&#8217;t good!  Thankfully, if you click on a keyword in Google Webmaster Tools, you&#8217;ll be given a list of what pages this keyword appears in.  I was shocked to find out that the keyword &#8220;RSS&#8221; appeared numerous times on <strong><em>every page</em></strong> of my site!</p>
<p>Digging a little deeper, I found that every place I had a link to my RSS feed (sidebar, post metadata, etc&#8230;) these links were being indexed.  And since the  text that is also a link seems to be given a higher ranking by Google, the keyword &#8220;RSS&#8221; was doing very well!</p>
<p>So, I went and changed the links to my feed to add the <em>nofollow</em> and <em>noindex</em> attributes, and waited.  One thing you will learn about SEO is that changes don&#8217;t happen overnight!  After a few weeks, the top keywords on my site were back to useful keywords.</p>
<h4>Conclusion</h4>
<p>Keywords are a very important since they are how new visitors can find your site.  By assisting web crawlers and leading them to the correct content, you can make your site appear more readily when people search for the chosen keywords.  However, do keep in mind that nothing replaces content.  Just drawing visitors to your site and having them leave disappointed is not the way to go.  It&#8217;s important to realize that some search engines will penalize your site if they feel you are incorrectly guiding their web crawler.  So I guess I would caution you, the designer, to ensure that you only use these techniques to help your site appear correctly in searches &#8212; or more importantly, to not appear in searches that are completely irrelevant.  RSS Feed anyone?</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalnotions.net/how-do-search-engines-work/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is SEO and why do I need it?</title>
		<link>http://digitalnotions.net/what-is-seo/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=what-is-seo</link>
		<comments>http://digitalnotions.net/what-is-seo/#comments</comments>
		<pubDate>Fri, 22 Jan 2010 16:06:51 +0000</pubDate>
		<dc:creator>Mark Wood</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Web Design]]></category>
		<category><![CDATA[Blog]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://digitalnotions.net/?p=961</guid>
		<description><![CDATA[Looking around at numerous other blogs I frequent, it becomes painfully clear just how little many people understand about SEO, or Search Engine Optimization.  In this situation, ignorance is not bliss as these blogs are potentially sacrificing a large number of readers who can&#8217;t find the content contained within. What is SEO? SEO, or Search [...]]]></description>
			<content:encoded><![CDATA[<p>Looking around at numerous other blogs I frequent, it becomes painfully clear just how little many people understand about SEO, or Search Engine Optimization.  In this situation, ignorance is not bliss as these blogs are potentially sacrificing a large number of readers who can&#8217;t find the content contained within.</p>
<h4>What is SEO?</h4>
<p>SEO, or Search Engine Optimization is the process by which the author of a web page (or blog in our case) organizes and formats their content to make it more accessible to search engines such as <a href="http://www.google.com">Google</a>, <a href="http://www.yahoo.com">Yahoo</a>, or <a href="http://www.bing.com">Bing</a>.  This sounds relatively simple, right?  Well, let&#8217;s start off by making it clear that there is no such thing as a blog with perfect SEO simply because there is no 100% definition of exactly what &#8220;perfect SEO&#8221; really entails.  However, there are a few simple things that can go a long way to making sure that your blog is at least getting indexed by search engines.<span id="more-961"></span></p>
<p>Some may ask why it&#8217;s so important to have search engines indexing our carefully crafted webpages.  The answer is pretty simple really.  If the search engines can find our content and index it, that means that people who are searching Google, or other search engines, can find our content.  This is what is referred to as <strong>organic traffic</strong> as it&#8217;s traffic that the blog has generated without any assistance from you (aside from writing the initial article or post).</p>
<h4><strong>Why do we care about Organic Traffic?</strong></h4>
<p>Many will argue that organic traffic is one of the most important types of traffic as it means you are reaching readers based on them specifically searching for your content &#8212; which means that they are more likely to stick around and read some more.  What&#8217;s more, you are reaching new readers which should help to grow readership.  After all, readership is the key to a successful blog!</p>
<p>So officially, how important is this organic traffic?  There are tons of different statistics out there, but I&#8217;m going to just ignore them for a minute and tell you my opinion.  While I have a significant number of repeat visitors, a very large portion (over 70% as of this writing) arrive at my blog from a search engine.  Of the people finding my site on search engines, more than half visit a second page on my blog.  Collectively, they spend well over a minute on my site.  While these numbers are good, the ultimate goal is to raise them.  It&#8217;s also important to note that the vast majority (over 95%) of search engine traffic is from Google.  Therefore, it seems that focusing on Google&#8217;s ranking is the key to success here.</p>
<h4>Getting started with SEO?</h4>
<p>Unfortunately, there is no magic bullet when it comes to optimizing a blog for search engines.  There are, however, a few steps that need to be taken prior to changing anything on you blog.  The first is to setup some tools to help you better understand how your site is currently viewed by the search engines.  In order to do this, I highly recommend setting up a Google account and signing up for both their <a href="http://www.google.com/webmasters/tools">Webmaster Tools</a> and <a href="https://www.google.com/analytics/home">Google Analytics</a>.<a href="https://www.google.com/analytics/home"></a></p>
<p>The easiest way to setup Google Analytics on a WordPress blog is with the most excellent <a href="http://yoast.com/wordpress/google-analytics/">Google Analytics for WordPress</a> plugin by Joost de Valk.  This plugin, and the associated setup page makes it very painless to get started tracking your visitors.  There are also a host of great features such as outbound link tracking and keyword tracking that Joost describes very nicely.</p>
<p>While just as easy to setup, Google Webmaster tools is even more useful for SEO purposes.  It gives the user a list of keywords that appear on your site in order of relevance (meaning how prominence they are) as well as your search engine ranks for popular searches.  This information is invaluable when trying to see how your site is currently portrayed on the web!</p>
<div id="attachment_974" class="wp-caption aligncenter" style="width: 589px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-full wp-image-974" title="Search Phrases in Google Webmaster Tools" src="http://digitalnotions.net/wp-content/uploads/2010/01/Google_Keywords.png" alt="Google Webmaster Tools - Search Phrases" width="579" height="167" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Search Queries as shown in Google Analytics</p></div>
<p>While my current search queries aren&#8217;t really all that impressive, you can see how powerful this tool really is.  It shows me the query that my site ranks on, and what position my site will appear in the results list.  Ideally, you&#8217;ll want all number 1 in the &#8220;Position&#8221; column.  While this may give a great representation of what queries will pull up your site, what about keywords?</p>
<p style="text-align: center;">
<div id="attachment_976" class="wp-caption aligncenter" style="width: 440px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-full wp-image-976 " title="Google Keywords" src="http://digitalnotions.net/wp-content/uploads/2010/01/Keywords.png" alt="Keywords as shown by Google Webmaster Tools" width="430" height="185" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Top Keywords displayed by Google Webmaster Tools</p></div>
<p>This is just as powerful, but in a slightly different manner.  From here, you can see the top ranking keywords on my blog.  You can also see the significance of each one.  So, looking at these keywords, you can see that currently, the most significant keyword on my site is &#8220;smugmug&#8221; which makes a lot of sense since I have written rather in depth about Smugmug vs. Zenfolio <a href="http://digitalnotions.net/zenfolio-vs-smugmug-cost-comparison/">here</a>, <a href="http://digitalnotions.net/photo-hosting-zenfolio-vs-smugmug/">here</a>, and <a href="http://digitalnotions.net/zenfolio-vs-smugmug-part-3-overall-thoughts/">here</a> to name a few.</p>
<p>After setting up both of these Google tools, do be aware that it may take as long as a month before you start receiving meaningful data.</p>
<h4>Where do I go from here?</h4>
<p>To start with, it&#8217;s a good idea to let these tools start collecting data.  The next thing to do is to perform a few searches on Google to see exactly what pages from your site appear when searched for relevant topics.  If you&#8217;re curious to know what pages of your site have been indexed, the best way to do this in Google is to search for &#8216;site:yoursite.com&#8217; without the quotes.</p>
<div id="attachment_978" class="wp-caption aligncenter" style="width: 361px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><img class="size-full wp-image-978" title="Google Search for Digitalnotions.net" src="http://digitalnotions.net/wp-content/uploads/2010/01/search_site.png" alt="Google search box for digitalnotions.net pages" width="351" height="53" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Searching for all Digitalnotions.net pages in Google</p></div>
<p>To see the results of the above search, click <a href="http://www.google.com/search?rls=ig&amp;hl=en&amp;source=hp&amp;q=site%3Adigitalnotions.net&amp;aq=f&amp;aql=&amp;aqi=&amp;oq=">here</a>.</p>
<p>Over the next few months, I&#8217;m going to post more information about optimizing a WordPress blog for search engines.  If you ave any tips or questions, feel free to let me know and I&#8217;ll do my best to write about them!</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalnotions.net/what-is-seo/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>2010 New Year&#8217;s Resolutions</title>
		<link>http://digitalnotions.net/2010-new-years-resolutions/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=2010-new-years-resolutions</link>
		<comments>http://digitalnotions.net/2010-new-years-resolutions/#comments</comments>
		<pubDate>Sun, 27 Dec 2009 17:34:36 +0000</pubDate>
		<dc:creator>Mark Wood</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Daily Photo]]></category>
		<category><![CDATA[New Years]]></category>
		<category><![CDATA[Resolution]]></category>

		<guid isPermaLink="false">http://digitalnotions.net/?p=779</guid>
		<description><![CDATA[So 2009 is almost over, and while I know I should have expected the year to end (as they always do), I&#8217;m somehow more surprised than usual.  Apparently, I&#8217;d gotten a little too comfortable with writing 2009 on things so it is now time to force me to change (or else scribble out a lot [...]]]></description>
			<content:encoded><![CDATA[<p>So 2009 is almost over, and while I know I should have expected the year to end (as they always do), I&#8217;m somehow more surprised than usual.  Apparently, I&#8217;d gotten a little too comfortable with writing 2009 on things so it is now time to force me to change (or else scribble out a lot of dates).  If the past is any indicator, it will take me until June before I figure out what&#8217;s going on with regards to documenting the correct year.</p>
<p>With that said, I&#8217;m trying to actually make some New Year&#8217;s Resolutions this year.  You see, I&#8217;m on a roll from last year having successfully accomplished my single resolution to make no resolutions.  While it may not be a huge undertaking, it&#8217;s one which I took seriously and am proud to say I&#8217;ve generally succeeded.  I like to enjoy the successes in my life &#8211; no matter how small and insignificant they may seem.</p>
<p>So this year, I&#8217;m going to actually try to market Digital Notions.  If you&#8217;re read my previous article entitled <a title="Digital Notions - Rookie Blogging Mistakes" href="http://digitalnotions.net/rookie-blogging-mistakes/">Rookie Blogging Mistakes</a>, you&#8217;ll soon realize this is one of my biggest hurdles I&#8217;m facing with the success of this site.  In an effort to do this, I&#8217;m going to be undertaking a huge task &#8211; posting at least one photo every day.</p>
<p>I&#8217;m not going to set any limits on the subject matter of these daily photos.  They may be simple snippets of my daily life.  They may be photos of which I&#8217;m particularly proud.  Or, they may be some experiments that either did or didn&#8217;t come out correctly.  Regardless, I&#8217;m hoping to see a progression throughout the year.  Overall, I&#8217;m trying to grow as a photographer.  We&#8217;ll see how it goes.</p>
<p>In addition to Photo A Day plan, I&#8217;m going to try to write more.  You see, as much as I enjoy photography, I also enjoy writing.  I plan to not only write more helpful articles for fellow bloggers (especially about the Photo A Day undertaking), but perhaps write some more creative pieces.  I don&#8217;t want topics to stray too far from the purpose of this site, but I do want this site to evolve into something that is uniquely me.</p>
<p>So there you have it!  If you have any ideas for topics to write about, or any ideas for daily photo themes, leave a comment and let me know!</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalnotions.net/2010-new-years-resolutions/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Rookie Blogging Mistakes</title>
		<link>http://digitalnotions.net/rookie-blogging-mistakes/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=rookie-blogging-mistakes</link>
		<comments>http://digitalnotions.net/rookie-blogging-mistakes/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 00:00:03 +0000</pubDate>
		<dc:creator>Mark Wood</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Blog Marketing]]></category>
		<category><![CDATA[Design]]></category>
		<category><![CDATA[SEO]]></category>
		<category><![CDATA[Wordpress]]></category>

		<guid isPermaLink="false">http://digitalnotions.net/?p=721</guid>
		<description><![CDATA[Photo blogging can be tricky for a rookie blogger.  But there are some pitfalls that can be avoided with careful planning and an attention to detail.]]></description>
			<content:encoded><![CDATA[<p><em>In reading through <a title="Pro Blogger blogging website" href="http://www.problogger.net" target="_blank">Pro Blogger</a> today, I found an interesting post entitled <a href="http://www.problogger.net/archives/2009/12/21/rookie-lessons-for-new-bloggers/">Rookie Lessons for New Bloggers</a>, which was a guest post by Katie Kimball of <a href="http://www.kitchenstewardship.com/">Kitchen Stewardship</a>.  As somewhat of a rookie myself, I decided to quickly jot down my thoughts.  This soon turned into the following full post which I figured I&#8217;d share with you all.</em></p>
<h3>Blogging is Difficult!</h3>
<div id="attachment_727" class="wp-caption alignright" style="width: 310px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; float: right;"><img class="size-full wp-image-727" title="Hard Work" src="http://digitalnotions.net/wp-content/uploads/2009/12/hard_work.jpg" alt="Blogging - Hard Work" width="300" height="175" /><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">Photo by nkzs - stock.xchng</p></div>
<p>There.  I said it.  Blogging is difficult.  Even more so for someone new to online publishing &#8212; the &#8220;blog rookie&#8221; if you will.  Sure, there are tons of success stories, and great resources with tons of information.  That&#8217;s enough, right?  Perhaps.  But don&#8217;t be fooled into thinking it&#8217;s easy to sit down and write a successful blog!  The process of simply setting up a blog can be intimidating and time consuming, especially if you&#8217;re trying to setup a unique domain name and host the blog on a server as opposed to going through a ready made blog site such as <a title="Wordpress.com - Easy to setup blogs" href="http://www.wordpress.com" target="_blank">WordPress.com</a> or <a title="Blogger - Free blogs" href="http://www.blogger.com" target="_blank">Blogger</a>.  We haven&#8217;t even begun to write yet, a task which for many, is harder then they anticipated.  After an initial burst of energy and great ideas, finding topics, images and motivation can become difficult.  And we&#8217;re not even to the part of this venture where you have to actually market your blog.  That&#8217;s right.  Sites don&#8217;t just take off and become profitable on their own.  Along the way, mistakes are made.  Lots of them.  Yes.  Everyone makes mistakes when blogging and anyone who claims they haven&#8217;t is lying to you.</p>
<p><span id="more-721"></span>So, what are us rookie bloggers to do?  Persevere.  Work hard.  Blogs are made from blood, sweat, and tears &#8211; both literally and figuratively.  My first six months as a blogger required probably 2 &#8211; 3 times as much time spent performing non-writing task as is spent actually writing content.  And once I was over the initial hurdle of getting things setup and a tidy stash of articles posted on my site, I got to start the really hard work &#8212; marketing.  Make no mistakes, starting a blog is a long, hard and time consuming venture.  Most successful bloggers have been at this for years!</p>
<h3>My Perspective on Blogging</h3>
<p>While Katie makes some great points in her article (which I strongly encourage any blogger, rookie or not, to read), I find my list of rookie mistakes to be quite a bit different.  Now let me explain a little about me so you know where I&#8217;m coming from.  I&#8217;m a software engineer.  I spend copious amounts of time writing code and studying algorithms.  Therefore, some of the more cryptic tasks such as server administration and layout design are areas where I have some actual professional experience.  However, while I may have an advantage in the technical aspects of blogging, I have zero marketing experience.  I also have limited amounts of time as I am currently employed in a full time engineering position.</p>
<p>Therefore, for me, blogging is as much about making my blog as easy to maintain as possible as it is about writing quality articles.  Sounds weird?  Possibly.  But by writing my blog in a search-engine friendly fashion, I&#8217;ve managed to get close to 75% organic traffic (traffic from people searching on <a title="Google Search Engine" href="http://www.google.com" target="_blank">Google</a>, <a title="Bing Search Engine" href="http://www.bing.com" target="_blank">Bing</a> or the like).  Remember, I have zero marketing experience and therefore, am initially relying very heavily on search engine traffic.  I&#8217;ve also customized my theme such that writing posts is easy and minimal time is spent trying to get things to &#8220;line up&#8221; or &#8220;look right&#8221;.  This is key.  This means I get to spend more time writing, which for me is the whole point.</p>
<h3>Prerequisites to Launching a New Blog</h3>
<p>With as much time and effort as it takes to start to develop initial content, should people really be worried about doing anything but writing when they launch a blog?  In my opinion, yes!  It&#8217;s important to step back and do some research &#8211; research on web hosting, <a title="Content Management System - Wikipedia Reference" href="http://en.wikipedia.org/wiki/Content_management_system" target="_blank">content management systems</a> (CMS), and theme selection.  These items will play a huge role in your success down the road.  And let me tell you from experience, it&#8217;s much easier to start with the right web host than switch everything over in a year.  Or even worse, start with the wrong CMS and try to import all your articles into a new system &#8212; possibly breaking links, pictures and a slew of other items in the process.</p>
<p>So what follows assumes you have a functioning blog, and have chosen a CMS that you&#8217;ll be using.  If you haven&#8217;t gotten this far, don&#8217;t stop reading!  But please do bookmark this, and any other interesting article you have on the subject of actually blogging as you&#8217;ll need them down the road when you are setup.</p>
<h3>Common Mistakes &#8211; and Possible Solutions</h3>
<p><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="size-full wp-image-732 alignright" title="To Do List" src="http://digitalnotions.net/wp-content/uploads/2009/12/todo_small.jpg" alt="A todo list" width="200" height="174" />Below is my list of what I feel are the five worst mistakes a rookie blogger can make. Some, I have personally made while others I&#8217;ve happily avoided.  Where possible, I&#8217;ve tried to include realistic approaches to fixing many of them, but in some cases, my advice may not apply.  You get the idea.</p>
<p><strong>1. Poor Website Design<br />
</strong></p>
<p>To me, there is nothing more obnoxious than a blog layout that is impossible to read.  I&#8217;ve seen some really messed up sites out there that apparently are making money for the author.  Just think how much better they would perform if they actually were designed for the reader!  Examples of bad design include the following:</p>
<ul>
<li><strong>Text overlapping photos</strong> &#8211; This makes the photo impossible to enjoy as well as making the text unreadable.  If people can&#8217;t read the text, they go elsewhere.</li>
<li><strong>Blinking text or bright colored text</strong> &#8211; Think about your audience.  Can you stand to look at the page for long periods of time?  You want your readers to <strong>read</strong> your blog.  Your blog should not look like a Hawaiian shirt (unless of course, you&#8217;re trying to market Hawaiian Shirts).</li>
<li><strong>Poor navigation</strong> &#8211; Give the reader something to click on.  If an article is discussing a difficult topic, link to other sites that have more information for the reader.  What&#8217;s more, make sure the reader can find you home page or other posts.</li>
<li><strong>Text only</strong> &#8211; Modern web browsers display images.  Use them!  Long, text only posts, are boring to the reader.  Embed videos, pictures and keep things interesting!</li>
</ul>
<p>There are so many good, inexpensive (some even free) blog themes out there that using a poorly designed one is simply inexcusable.  Personally, I did everything in my power to avoid these pitfalls, and yet I&#8217;ve still re-designed my theme a couple times in an effort to make things even better.  My site is still not perfect, but it&#8217;s much better than when I started.  Looking back, a $50 theme could have saved me a lot of time.  This bring me to my next point.</p>
<p><strong>2. Insufficient Time</strong></p>
<p><a href="http://digitalnotions.net/wp-content/uploads/2009/12/clock_small.jpg"><img style=' float: left; padding: 4px; margin: 0 7px 2px 0;'  class="alignleft size-full wp-image-739" title="A clock representing insufficient time" src="http://digitalnotions.net/wp-content/uploads/2009/12/clock_small.jpg" alt="Clock Image representing insufficient time" width="100" height="100" /></a>I know this is a sore subject &#8212; especially for those who blog in addition to working full time (myself included).  But quite frankly, blogging is a serious commitment of your time.  From what I&#8217;ve seen, for a blog to thrive, you have two options.  The first option is to post really good daily entries that engage the reader (think about <a title="Heather Armstrong's Dooce.com" href="http://www.dooce.com" target="_blank">Heather Armstrong&#8217;s Dooce.com</a>).  This takes, at a minimum, an hour per day.  Or, you could do what many tech blogs do (and what I&#8217;ve tried to accomplish here with <a title="Digital Notions - Photography, Blogging and SEO" href="http://digitalnotions.net">my site</a>) and post more in-depth articles for your readers on a less regular schedule.  You should ideally be posting 4 entries per week (at least) in an attempt to grow content (though not all of them have to be overly long).  Again, think 4 hours minimum for your one in-depth article each week and an hour for the other three.  Not to mention that another hour per day (at a minimum) should be spent researching your topics, reading blogs and making helpful comments, marketing your blog through guest posts, etc&#8230;  At the end of the week, you&#8217;re easily talking to 20 hours per week.  I know full time bloggers who report working in excess of 60 hours per week.</p>
<p>Let me put this in perspective.  For many, until your blog is thriving and making a decent income, you&#8217;re working a full time job.  Many of us are married and/or have children.  That means you&#8217;re working a full 8+ hour day, plus commute, and coming home to another 2+ hours of work to be done.  Do you have the time?</p>
<p>For me, this has been quite possibly the biggest hindrance with growing readership.  Depending on my work schedule, I often find I have little time leftover for blogging.  In fact, I actually have a couple gaps of months in between posts.  Clearly, my site lost readers over these posting gaps.  I&#8217;m still trying to get things back on track which is forcing me to jump into the marketing game and brings me to my next point.</p>
<p><strong>3. Insufficient Marketing</strong></p>
<p>Katie has a great discussion on how to become active in the blog community and make your comments count.  She also discusses the idea of participating in carnivals / memes (<a title="Definition of a Blog Meme" href="http://www.chrisg.com/what-is-a-blog-meme/" target="_blank">defined here</a>).  But there is more than just getting your name out there and getting links to your site.  I&#8217;ve made numerous comments on other people&#8217;s sites and sometimes am rewarded with additional traffic.  More often than not, I&#8217;m rewarded with single digit clicks.  My conclusion is that you have to network &#8211; to make personal connections.  Now at this point, anyone who knows me personally knows that I&#8217;m really <em>really</em> bad at this part.  So in a way, me discussing the merits of networking is akin to the proverbial pot calling the kettle black.  But I&#8217;m working on it.  I&#8217;ve started posting links to my recent articles in my <a title="Mark Wood's Twitter Feed" href="http://www.twitter.com/mjwood0" target="_blank">Twitter Feed</a> (feel free to follow me) and I&#8217;ve attempted to get out there and continue to comment on related articles hoping it will at some point pay off.  I&#8217;m not sure it&#8217;s working, but only time will tell.</p>
<p>Most of all, it&#8217;s important to provide a product people want and then drive <em>the right</em> people to that product.  The problem is, I&#8217;m not sure how to target <em>the right </em>people.  It is this point that&#8217;s one of the other factors holding my blog back.  Therefore, I don&#8217;t have much in the way of a solution to this particular problem.  Do you?  If so, leave a comment!</p>
<p><strong>4. Poorly Written Blog Posts</strong></p>
<p>Not everyone is a great author.  It&#8217;s a simple fact of life.  But let me be frank with you and say this: if you&#8217;re writing on a publicly accessible medium such as a blog, it&#8217;s time to face reality and write in a manner that is readable.  Now I&#8217;m not going to tell you exactly what that means for your particular blog.  But there are a few definitive issues to think about:</p>
<ul>
<li><strong>Slang</strong> &#8211; I&#8217;m not saying to never do it, but shortcuts commonly found while reading a teenager&#8217;s cell phone have no place on a blog.  Many people won&#8217;t understand the shorthand and therefore, you inadvertently alienate a portion of your readers.</li>
<li><strong>Capitalization / Punctuation</strong> &#8211; Simply put, people have to be able to easily read you posts.  Feel free to take some creative license here, but remember &#8212; if the readers have to expend too much time trying to figure out what you&#8217;re trying to say, they will go elsewhere.</li>
<li><strong>Lists, Headings, etc.</strong> &#8211; Again, use them.  A well organized post is much nicer to read.</li>
<li><a href="http://digitalnotions.net/wp-content/uploads/2009/12/graph_small.jpg"><img style=' float: right; padding: 4px; margin: 0 0 2px 7px;'  class="alignright size-full wp-image-743" title="Graph - A picture is worth a thousand words" src="http://digitalnotions.net/wp-content/uploads/2009/12/graph_small.jpg" alt="A picture is worth a thousand words" width="105" height="88" /></a><strong>A picture is worth a thousand words</strong> &#8211; Sometimes, the best way to show something is visually. Use photos, graphs, charts, etc. to make your point cleanly and concisely.</li>
<li><strong>Spell check</strong> &#8211; I know this is basic but I&#8217;ve seen some blogs with awful spelling errors.  And while I can&#8217;t claim to be excellent at spelling, there are spell checkers available that make this task pretty much automatic.</li>
</ul>
<p>The whole idea behind having a successful blog is to communicate information.  You are trying to build a relationship with your readers, and it&#8217;s important that they can understand you.</p>
<p>I work very hard to attempt to keep my writing understandable.  I feel I&#8217;ve succeeded, but I still find the occasional typo that&#8217;s crept into an old post.  It&#8217;s frustrating, but part of the experience (or so I try to tell myself).</p>
<p><strong>5. Participate on you OWN Site</strong></p>
<p>That&#8217;s right.  Not only do you have to write posts, do research, keep you site running smoothly and all that fun stuff, you also have to <strong>get involved on your own site</strong>!  Sounds basic, right?  But let&#8217;s face it, we&#8217;ve all seen sites where you comment or ask questions and the author never checks back in. It&#8217;s frustrating.  It&#8217;s annoying.</p>
<p>You are trying to build a community.  You&#8217;re trying to grow you readership.  If people have questions, it behooves you to do your best to answer them. Reader&#8217;s like to feel like they are a part of something so you have to do your best to include them.</p>
<p>It&#8217;s pretty amazing when you start seeing comments come in from complete strangers!</p>
<h3>My Final Departing Advice</h3>
<p>Katie ended her article with a final tip which I found really appropriate.</p>
<blockquote><p>&#8230;you need to <strong>believe </strong>you’ve got something good, <strong>work hard</strong> shamelessly promoting your own site, and <strong>get lucky</strong> sometimes.</p></blockquote>
<p>I think she really hits the nail on the head.  While I make no claims my advice is worth more than hers, I felt it appropriate to end my discussion with a parting thought as well.</p>
<h3 style="text-align: center;"><strong>Be yourself</strong>.</h3>
<p>I realize this sounds somewhat trite, but due to the fact that blogging is a lifestyle, it&#8217;s absolutely critical to write about something you care about &#8212; something for which you have passion.  Your blog is going to become a huge part of your life.  It&#8217;s much better to shape your blog around your lifestyle than the other way around.  I learned this the hard way when I first started my blog.  Essentially, I had narrowed my focus to just a small portion of my interests and was having a very hard time staying motivated to write.  So I didn&#8217;t.  Clearly, this was bad and I came to the conclusion that writing only about photography didn&#8217;t consistently inspire me. I learned very quickly that if you don&#8217;t write, it&#8217;s next to impossible to succeed.  Lesson learned &#8211; the hard way.  So, I&#8217;ll stand by my advice.  Pick a topic that inspires you.  Something that&#8217;s a part of you life already and you like to research and learn about.  Since I&#8217;ve expanded my blog a little to include blogging, SEO and technology (while still trying to maintain a focus), I&#8217;ve found it much easier to come up with articles and get excited to spend some time writing them.  It&#8217;s still a work in progress, but I do feel that things are moving in the right direction.</p>
<p>With this said, my focus over the holiday is to prepare for the New Year with a project I&#8217;m passionate about and yet have somehow had very little time to implement.  Check back!  Great things are happening here at <a title="Digital Notions - Photography, Blogging and SEO" href="http://digitalnotions.net">Digital Notions</a>!</p>
<p>If you have any advice or comments, feel free to leave a note below!  I&#8217;d love to hear from you!</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalnotions.net/rookie-blogging-mistakes/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>2009 In Photographs</title>
		<link>http://digitalnotions.net/2009-in-photographs/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=2009-in-photographs</link>
		<comments>http://digitalnotions.net/2009-in-photographs/#comments</comments>
		<pubDate>Fri, 18 Dec 2009 04:09:34 +0000</pubDate>
		<dc:creator>Mark Wood</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Boston Globe]]></category>
		<category><![CDATA[The Big Picture]]></category>

		<guid isPermaLink="false">http://digitalnotions.net/?p=712</guid>
		<description><![CDATA[I was browsing the web the other day, looking at other photography blogs when I came across something that made my jaw hit the floor. Seriously. If you haven&#8217;t checked this out, you&#8217;re totally missing out on some of the most powerful photos of the year. According to the site: The Big Picture is a [...]]]></description>
			<content:encoded><![CDATA[<p>I was browsing the web the other day, looking at other photography blogs when I came across something that made my jaw hit the floor.  Seriously.  If you haven&#8217;t checked this out, you&#8217;re totally missing out on some of the most powerful photos of the year.</p>
<div id="attachment_714" class="wp-caption aligncenter" style="width: 431px;  border: 1px solid #dddddd; background-color: #f3f3f3; padding-top: 4px; margin: 10px; text-align:center; display: block; margin-right: auto; margin-left: auto;"><a href="http://www.boston.com/bigpicture/"><img src="http://digitalnotions.net/wp-content/uploads/2009/12/The_Big_Picture.png" alt="The Big Picture - Photojournalism" title="The_Big_Picture" width="421" height="62" class="size-full wp-image-714" /></a><p style=' padding: 0 4px 5px; margin: 0;'  class="wp-caption-text">The Big Picture - Photojournalism</p></div>
<p>According to the site:</p>
<blockquote><p>The Big Picture is a photo blog for the Boston Globe/boston.com, entries are posted every Monday, Wednesday and Friday by Alan Taylor. Inspired by publications like Life Magazine (of old), National Geographic, and online experiences like MSNBC.com&#8217;s Picture Stories galleries and Brian Storm&#8217;s MediaStorm, The Big Picture is intended to highlight high-quality, amazing imagery &#8211; with a focus on current events, lesser-known stories and, well, just about anything that comes across the wire that looks really interesting. </p></blockquote>
<p>I have to say.  The three part &#8220;2009 in Photos&#8221; series is simply amazing.  Then again, all of the entries are amazing!</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalnotions.net/2009-in-photographs/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Photoblogging &#8211; Can you make a living?</title>
		<link>http://digitalnotions.net/photoblogging-can-you-make-a-living/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=photoblogging-can-you-make-a-living</link>
		<comments>http://digitalnotions.net/photoblogging-can-you-make-a-living/#comments</comments>
		<pubDate>Thu, 17 Dec 2009 13:14:22 +0000</pubDate>
		<dc:creator>Mark Wood</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Advertising]]></category>
		<category><![CDATA[Affiliate Marketing]]></category>
		<category><![CDATA[Photo Blogging]]></category>

		<guid isPermaLink="false">http://digitalnotions.net/?p=706</guid>
		<description><![CDATA[I&#8217;ve seen plenty of sites out there discussing how much money people can make blogging. Some estimates show people making in the high six figures from writing every day. This is huge! But frankly, I&#8217;ve yet to see any of the top sites focus entirely on photography. So, this brought about an interesting question. Is [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve seen plenty of sites out there discussing how much money people can make blogging.  Some estimates show people making in the high six figures from writing every day.  This is huge!  But frankly, I&#8217;ve yet to see any of the top sites focus entirely on photography.</p>
<p>So, this brought about an interesting question.  <strong>Is it really possible to make a living as a photoblogger? </strong> </p>
<p>In a <a href="http://www.problogger.net/archives/2009/12/16/how-to-make-30000-a-year-blogging/">recent article</a> by top blog consultant and the guy behind the site ProBlogger, <a href="http://www.problogger.net/archives/2005/01/06/about-darren/">Darren Rowse</a>, it&#8217;s very possible to make $30,000 per year after a couple of years blogging.  Now that sounds like a respectable living &#8212; or at least enough to allow many people to quit their full time jobs and focus on blogging 100% (which should boost earnings).</p>
<p>This article discusses how to make this work.  Basically, he breaks it down into a more easily digestible figure of $82.19 per day and goes on to describe how one might go about earning this sum.  Clearly, advertising is a large portion of income and something that can be successfully incorporated into a photo blog.  However, since the focus of a good photo blog is the photos themselves, having too many colorful ads or banners could be distracting.  Therefore, it is key to ensure that the advertising present is tasteful. </p>
<p>Also part of the $82.19 per day equation is affiliate marketing.  For those unfamiliar with this concept, affiliate marketing is where an independent site attempts to market a product on another site.  A commission is paid to the affiliate for every successful sale.  In my opinion, this type of program is ideal for photo bloggers so long as they can find products that deal with photography.  To top it off, most photography equipment is somewhat costly so percentage based commissions should yield the blogger some decent earnings.</p>
<p>Lastly, Daren Rowse suggests writing an e-book.  While this may be an option for a photo-centric blog, I think that instead, attempting to sell prints and actual photos might be a better opportunity.  Clearly, this is the golden ticket for a photo blogger.  If they can stir up enough interest in their work, perhaps actual paying jobs and assignment work may result.</p>
<p>Overall, I really do feel that a photo blog can be a primary source of income for a photographer.  Unfortunately, like any other business venture, it takes time and dedication.  In the meantime, don&#8217;t quite you day job!</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalnotions.net/photoblogging-can-you-make-a-living/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>WordPress for BlackBerry</title>
		<link>http://digitalnotions.net/wordpress-for-blackberry/?utm_source=rss&#038;utm_medium=rss&#038;utm_campaign=wordpress-for-blackberry</link>
		<comments>http://digitalnotions.net/wordpress-for-blackberry/#comments</comments>
		<pubDate>Wed, 19 Aug 2009 03:04:50 +0000</pubDate>
		<dc:creator>Mark Wood</dc:creator>
				<category><![CDATA[Blogging]]></category>
		<category><![CDATA[Blackberry]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[Wordpress Mobile Device]]></category>

		<guid isPermaLink="false">http://digitalnotions.net/wordpress-for-blackberry/</guid>
		<description><![CDATA[I&#8217;ve wondered for some time when today would come! Yes, sure, it&#8217;s been possible to post blog entries via email for quite some time, but as of today, there is an official BlackBerry WordPress client that works over BlackBerry Internet Service (BIS)! So, what&#8217;s so great? Check out this video demonstration for a quick overview! [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve wondered for some time when today would come!  Yes, sure, it&#8217;s been possible to post blog entries via email for quite some time, but as of today, there is an official BlackBerry WordPress client that works over BlackBerry Internet Service (BIS)!</p>
<p>So, what&#8217;s so great?  Check out <a href="http://wordpress.tv/2009/07/08/introducing-wordpress-for-blackberry-beta/">this video demonstration</a> for a quick overview!</p>
<p>Yes, this app has been around for a couple months, but the BIS support they added in todays release really makes it usable for the general public on the go (prior versions only supported BES &#8211; BlackBerry Enterprise Server, a corporate setup).</p>
<p>So if you have a BlackBerry, check it out by pointing your browser at <a href="http://blackberry.wordpress.org/install">http://blackberry.wordpress.org/install</a> to give it a try. You will need to have XMLRPC installed and working properly for this app to work, but the latest versions of WordPress have this working out of the box (unless your theme doesn&#8217;t support it).</p>
<p>It works great for me, so let me know how it&#8217;s working (or not working) for you.  And yes, this whole post was written on my BlackBerry Bold!</p>
]]></content:encoded>
			<wfw:commentRss>http://digitalnotions.net/wordpress-for-blackberry/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Minified using disk: basic (Feed is rejected)
Page Caching using disk: enhanced (User agent is rejected)
Database Caching 6/29 queries in 0.016 seconds using disk: basic

Served from: digitalnotions.net @ 2012-02-06 01:14:53 -->
