<?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>Dinkum Interactive &#187; wordpress plugin</title>
	<atom:link href="http://www.dinkuminteractive.com/tag/wordpress-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dinkuminteractive.com</link>
	<description>Fully Integrated Internet Marketing Company</description>
	<lastBuildDate>Tue, 22 May 2012 15:15:44 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
<xhtml:meta xmlns:xhtml="http://www.w3.org/1999/xhtml" name="robots" content="noindex" />
		<item>
		<title>Adding Menu Options in WordPress</title>
		<link>http://www.dinkuminteractive.com/adding-menu-options-in-wordpress/</link>
		<comments>http://www.dinkuminteractive.com/adding-menu-options-in-wordpress/#comments</comments>
		<pubDate>Fri, 11 Mar 2011 10:00:02 +0000</pubDate>
		<dc:creator>Emiliano Jankowski</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[$wp_admin_bar]]></category>
		<category><![CDATA[add_menu]]></category>
		<category><![CDATA[add_menu_page]]></category>
		<category><![CDATA[add_submenu_page]]></category>
		<category><![CDATA[Administration Menus]]></category>
		<category><![CDATA[admin_bar_menu]]></category>
		<category><![CDATA[admin_menu]]></category>
		<category><![CDATA[manage_options]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://www.dinkuminteractive.com/?p=2810</guid>
		<description><![CDATA[In my past few entries I&#8217;ve been exploring some of the basics that make WordPress &#8220;tick&#8221; and how we use these tools to increase functionality for your site within the WP ecosystem. As you&#8217;ve seen, these posts aren&#8217;t targeted specifically at general users, but they do have relevance to all of you non-techies out there: digging into the basics of]]></description>
			<content:encoded><![CDATA[<p>In my past few entries I&#8217;ve been exploring some of the basics that make WordPress &#8220;tick&#8221; and how we use these tools to increase functionality for your site within the WP ecosystem.  As you&#8217;ve seen, these posts aren&#8217;t targeted specifically at general users, but they do have relevance to all of you non-techies out there:  digging into the basics of WordPress and how to work with it shows you that the &#8220;nice little open source system&#8221; running your blog or website is really quite a sophisticated piece of software.   As my friend and colleague Jacob Smith says: sometimes it&#8217;s good to know what your mechanic is talking about when he&#8217;s fixing your car!</p>
<p>So, today&#8217;s post will explore something you&#8217;ve seen as a user ever time you login to WordPress: the admin navigation on the left hand side of your screen.  As a developer, I often want to give you (the user) access to some configuration options related to the plugin, feature, or page that I&#8217;m working on.  Well, as you might expect, WordPress has a couple of functions and hooks to help us add a custom menu item to your admin navigation.  Here&#8217;s how it works:</p>
<p><strong>Adding a new admin section</strong></p>
<p>First we will add a function which will write our custom page</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> dinkum_page<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #666666; font-style: italic;">// Check if the user has enough rights.</span>
	<span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span>current_user_can<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'manage_options'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span>  <span style="color: #009900;">&#123;</span>
		wp_die<span style="color: #009900;">&#40;</span> __<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'You don\'t have permissions to access this page.'</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
&nbsp;
	<span style="color: #666666; font-style: italic;">// Write our custom html</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;h2&gt; Hello there!&lt;/h2&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;div class=&quot;wrap&quot;&gt;'</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'We can put our custom form here or any content we need!! '</span><span style="color: #339933;">;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'&lt;/div&gt;'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>Then, we need a function to add our menu options.   Here it is:</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> dinkum_menu<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	add_menu_page<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Dinkum'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Dinkum'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'manage_options'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'dinkum-section'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'dinkum_page'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>And finally we have to use the magic WordPress tool: the action hook!</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'admin_menu'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'dinkum_menu'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Here is the result:<br />
<a href="http://www.dinkuminteractive.com/wp-content/uploads/2011/03/wordpress-admin-menu-main.png" rel="lightbox[2810]"><img class="aligncenter size-full wp-image-2813" title="wordpress-admin-menu-main" src="http://www.dinkuminteractive.com/wp-content/uploads/2011/03/wordpress-admin-menu-main.png" alt="" width="581" height="518" /></a></p>
<p>Taking this concept a step further is the ability to add some items to our new &#8220;Dinkum&#8221; section?  Easy! We can use the add_submenu_page function.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> dinkum_menu<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
&nbsp;
	add_menu_page<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Dinkum'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Dinkum'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'manage_options'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'dinkum-section'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'dinkum_page'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
	add_submenu_page<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'dinkum-section'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Setting'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'Setting'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'manage_options'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'dinkum-section-setting'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'dinkum_page'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p><a href="http://www.dinkuminteractive.com/wp-content/uploads/2011/03/wordpress-new-admin-custom-item.png" rel="lightbox[2810]"><img class="aligncenter size-full wp-image-2816" title="wordpress-new-admin-custom-item" src="http://www.dinkuminteractive.com/wp-content/uploads/2011/03/wordpress-new-admin-custom-item.png" alt="" width="436" height="532" /></a><br />
And finally, in the recently WordPress 3.1, we have a new admin bar.  Did you know it? You need to be logged to see it, of course.<br />
<a href="http://www.dinkuminteractive.com/wp-content/uploads/2011/03/wordpress-new-admin.png" rel="lightbox[2810]"><img class="aligncenter size-full wp-image-2819" title="wordpress-new-admin" src="http://www.dinkuminteractive.com/wp-content/uploads/2011/03/wordpress-new-admin.png" alt="" width="739" height="280" /></a></p>
<p>Now its time to add some code.    We attach our function to the <em>admin_bar_menu</em> hook</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'admin_bar_menu'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'dinkum_adminbar_menu'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Add the options</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> dinkum_adminbar_menu<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
	<span style="color: #000000; font-weight: bold;">global</span> <span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">;</span>
	<span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">add_menu</span><span style="color: #009900;">&#40;</span>
		<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>	<span style="color: #0000ff;">'id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'dinkum-menu'</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'title'</span> <span style="color: #339933;">=&gt;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Dinkum'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'href'</span> <span style="color: #339933;">=&gt;</span> get_admin_url<span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'admin.php?page=dinkum-section'</span><span style="color: #009900;">&#41;</span>
		<span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000088;">$wp_admin_bar</span><span style="color: #339933;">-&gt;</span><span style="color: #004000;">add_menu</span><span style="color: #009900;">&#40;</span>
		<span style="color: #990000;">array</span><span style="color: #009900;">&#40;</span>	<span style="color: #0000ff;">'parent'</span> <span style="color: #339933;">=&gt;</span><span style="color: #0000ff;">'dinkum-menu'</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'id'</span> <span style="color: #339933;">=&gt;</span> <span style="color: #0000ff;">'dinkum-menu-setting'</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'title'</span> <span style="color: #339933;">=&gt;</span> __<span style="color: #009900;">&#40;</span> <span style="color: #0000ff;">'Setting'</span> <span style="color: #009900;">&#41;</span><span style="color: #339933;">,</span>
				<span style="color: #0000ff;">'href'</span> <span style="color: #339933;">=&gt;</span> get_admin_url<span style="color: #009900;">&#40;</span><span style="color: #009900; font-weight: bold;">null</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'admin.php?page=dinkum-section-setting'</span><span style="color: #009900;">&#41;</span>
		<span style="color: #009900;">&#41;</span>
	<span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>And here is the result. Quite nice, right? :)<br />
<a href="http://www.dinkuminteractive.com/wp-content/uploads/2011/03/wordpress-new-admin-custom.png" rel="lightbox[2810]"><img class="aligncenter size-full wp-image-2818" title="wordpress-new-admin-custom" src="http://www.dinkuminteractive.com/wp-content/uploads/2011/03/wordpress-new-admin-custom.png" alt="" width="658" height="392" /></a></p>
<p>If you want to read more about menus, take a look  <a href="http://codex.wordpress.org/Administration_Menus">here</a></p>
<p>And you can download the files <a href="http://www.dinkuminteractive.com/wp-content/uploads/2011/03/dinkum-default-empty-post-content.zip">here</a></p>
<p><em>Emiliano Jankowski is Senior Developer at Dinkum Interactive, specializing in creating elegant solutions to complex problems. Emiliano also leads Dinkum’s internal technology development projects, leveraging expertise with WordPress and CodeIgniter despite ten years experience in ASP and .NET. Emiliano is an avid scuba diver and lives in both Barcelona and Buenos Aires.</em></p><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.dinkuminteractive.com/adding-menu-options-in-wordpress/' addthis:title='Adding Menu Options in WordPress' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_google_plusone"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.dinkuminteractive.com/adding-menu-options-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Hooks, Action and Filters in WordPress</title>
		<link>http://www.dinkuminteractive.com/hooks-action-and-filters-in-wordpress/</link>
		<comments>http://www.dinkuminteractive.com/hooks-action-and-filters-in-wordpress/#comments</comments>
		<pubDate>Fri, 11 Feb 2011 10:30:24 +0000</pubDate>
		<dc:creator>Emiliano Jankowski</dc:creator>
				<category><![CDATA[Blog]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[action hook]]></category>
		<category><![CDATA[add_action]]></category>
		<category><![CDATA[add_filter]]></category>
		<category><![CDATA[filter hook]]></category>
		<category><![CDATA[php]]></category>
		<category><![CDATA[plugin]]></category>
		<category><![CDATA[remove_action]]></category>
		<category><![CDATA[remove_filter]]></category>
		<category><![CDATA[wordpress plugin]]></category>
		<category><![CDATA[wp_head]]></category>

		<guid isPermaLink="false">http://www.dinkuminteractive.com/?p=2669</guid>
		<description><![CDATA[Before continuing adding features to our WordPress plugin, we need to know what hooks, actions and filters are. What does WordPress say? &#8220;Hooks are provided by WordPress to allow your plugin to &#8216;hook into&#8217; the rest of WordPress; that is, to call functions in your plugin at specific times, and thereby set your plugin in motion.&#8221; So, basically hooks, will]]></description>
			<content:encoded><![CDATA[<p>Before continuing adding features to <a href="http://www.dinkuminteractive.com/writing-your-first-plugin-for-wordpress-a-primer/">our WordPress plugin</a>, we need to know what hooks, actions and filters are.</p>
<p>What does WordPress say?</p>
<p><em>&#8220;Hooks are provided by WordPress to allow your plugin to &#8216;hook into&#8217; the rest of WordPress; that is, to call functions in your plugin at specific times, and thereby set your plugin in motion.&#8221; </em></p>
<p>So, basically hooks, will let you <em>modify content, add features,  and much more</em>, without touching anything of the WordPress Core.</p>
<p>There are two types of hooks:</p>
<ul>
<li>Actions: This kind of hooks are launched by the WordPress Core at specifics points during execution, or when specific events occur. Like publishing a post, changing themes and so on.</li>
<li>Filters: They will let you to modify content on the fly. You can, for instance, modify a post content before it is shown to the user or just doing the opposite like modifying some user content before saving it to the database.</li>
</ul>
<p>Let see some examples to truly understand the magic of hooks!</p>
<p><strong>Filter hooks</strong></p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> set_default_content<span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        <span style="color: #000088;">$default_post_content</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">&quot;This is our default post text!!&quot;</span><span style="color: #339933;">;</span>
        <span style="color: #b1b100;">if</span> <span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">isset</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">||</span> <span style="color: #990000;">trim</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$content</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">==</span><span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span>
                <span style="color: #b1b100;">return</span> <span style="color: #000088;">$default_post_content</span><span style="color: #339933;">;</span>
&nbsp;
        <span style="color: #b1b100;">return</span> <span style="color: #000088;">$content</span><span style="color: #339933;">;</span><span style="color: #009900;">&#125;</span>
&nbsp;
add_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">&quot;the_content&quot;</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">&quot;set_default_content&quot;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<div>We are adding a filter to the “<em>the_content</em>” hook. It means that when WordPress fires this hook, it will call our function as well and process it.</div>
<div>
<p>There are a lot of filter hooks available via the WordPress API.  For a full list check out the WordPress API codex: <a href="http://codex.wordpress.org/Plugin_API/Filter_Reference">http://codex.wordpress.org/Plugin_API/Filter_Reference</a></p>
<p>Also, you can see the default filters by opening up this file in your own WordPress installation: mywordpress/wp-includes/default-filters.php</p>
</div>
<div><strong>Action hooks</strong></div>
<div><strong> </strong><br />
To demonstrate the concept, let’s do a simple trick: change the color of the site title text. Our function, nothing special, will just print/echo some simple css rules.</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #000000; font-weight: bold;">function</span> change_title_color<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">'
&lt;!--
                    #site-title a {
                            color: #08FF00; /* lovely green :) */
                    }
--&gt;
&nbsp;
'</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></div>

<p>And here is the magic!</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;">add_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'wp_head'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'change_title_color'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></div>

<p>Take a look to the result</p>
<p><a href="http://www.dinkuminteractive.com/wp-content/uploads/2011/02/wordpress-filter-hooks-title.jpg" rel="lightbox[2669]"><img class="aligncenter size-full wp-image-2674" title="wordpress-filter-hooks-title" src="http://www.dinkuminteractive.com/wp-content/uploads/2011/02/wordpress-filter-hooks-title.jpg" alt="wordpress-filter-hooks-title" width="631" height="336" /></a></p>
<p>As you can see, I used the “<em>wp_head</em>” action hook. If you check your template header.php file, you can easily see when this hook will be called &#8211; I’ll give you a clue with the screenshot below:</p>
<p><a href="http://www.dinkuminteractive.com/wp-content/uploads/2011/02/wordpress-action-hooks.jpg" rel="lightbox[2669]"><img class="aligncenter size-full wp-image-2680" title="wordpress-action-hooks" src="http://www.dinkuminteractive.com/wp-content/uploads/2011/02/wordpress-action-hooks.jpg" alt="wordpress-action-hooks" width="543" height="242" /></a></p>
<p><strong>Removing Actions and Filters </strong></p>
<p>Importantly, WordPress gives you the chance to remove actions and filters. Why? Because remember that any plugin can add action and filter hooks, and some time you need to replace them or just remove because they are interfering with your owns functions.<br />
So, to do this, you just need to call</p>

<div class="wp_syntax"><div class="code"><pre class="php" style="font-family:monospace;"> remove_filter<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'filter_hook'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'filter_function'</span><span style="color: #009900;">&#41;</span> 
&nbsp;
remove_action<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'action_hook'</span><span style="color: #339933;">,</span><span style="color: #0000ff;">'action_function'</span><span style="color: #009900;">&#41;</span></pre></div></div>

<p>You can download the code <a href="http://www.dinkuminteractive.com/wp-content/uploads/2011/02/dinkum-default-empty-post-content.zip">dinkum-default-empty-post-content</a>, and also there is a really good hook database <a href="http://adambrown.info/p/wp_hooks">here</a>.</p>
<p>That’s all folks!</p>
</div>
<p><em>Emiliano Jankowski is Senior Developer at Dinkum Interactive, specializing in creating elegant solutions to complex problems. Emiliano also leads Dinkum’s internal technology development projects, leveraging expertise with WordPress and CodeIgniter despite ten years experience in ASP and .NET. Emiliano is an avid scuba diver and lives in both Barcelona and Buenos Aires.</em></p><div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.dinkuminteractive.com/hooks-action-and-filters-in-wordpress/' addthis:title='Hooks, Action and Filters in WordPress' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_google_plusone"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.dinkuminteractive.com/hooks-action-and-filters-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SEO Tool Review: Scribe for WordPress</title>
		<link>http://www.dinkuminteractive.com/seo-tool-review-scribe-for-wordpress/</link>
		<comments>http://www.dinkuminteractive.com/seo-tool-review-scribe-for-wordpress/#comments</comments>
		<pubDate>Thu, 25 Feb 2010 14:07:15 +0000</pubDate>
		<dc:creator>Bill</dc:creator>
				<category><![CDATA[Internet Marketing]]></category>
		<category><![CDATA[Scribe]]></category>
		<category><![CDATA[Search Engine Optimization]]></category>
		<category><![CDATA[seo tool]]></category>
		<category><![CDATA[seo tool review]]></category>
		<category><![CDATA[WordPress]]></category>
		<category><![CDATA[wordpress plugin]]></category>

		<guid isPermaLink="false">http://blog.dinkuminteractive.com/?p=1767</guid>
		<description><![CDATA[For those familiar with content development, Brian Clark is the well-known expert behind CopyBlogger. Recently, Brian teamed up with a talented crew to create a new SEO-focused tool for use by WordPress fans. Since Dinkum Interactive is a big WordPress fan and uses the platform itself, I took a few moments to take Scribe for a test drive in this]]></description>
			<content:encoded><![CDATA[<p>For those familiar with content development, Brian Clark is the well-known expert behind <a title="Brian Clark's Copy Blogger" href="http://www.copyblogger.com/" target="_blank"><strong>CopyBlogger</strong></a>. Recently, Brian teamed up with a talented crew to create a new SEO-focused tool for use by WordPress fans.</p>
<p>Since <a title="Dinkum Interactive: Philadelphia Online Marketing" href="http://www.dinkuminteractive.com/" target="_blank"><strong>Dinkum Interactive</strong></a> is a big WordPress fan and uses the platform itself, I took a few moments to take Scribe for a test drive in this SEO tool review and here&#8217;s what I found:</p>
<p><object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="320" height="265" codebase="http://download.macromedia.com/pub/shockwave/cabs/flash/swflash.cab#version=6,0,40,0"><param name="allowFullScreen" value="true" /><param name="allowscriptaccess" value="always" /><param name="src" value="http://www.youtube.com/v/SUuqVNIcbIA&amp;hl=en_US&amp;fs=1&amp;rel=0" /><param name="allowfullscreen" value="true" /><embed type="application/x-shockwave-flash" width="320" height="265" src="http://www.youtube.com/v/SUuqVNIcbIA&amp;hl=en_US&amp;fs=1&amp;rel=0" allowscriptaccess="always" allowfullscreen="true"></embed></object></p>
<p>Overall, I think that it&#8217;s a good tool especially for those with less experience. This was the  first time I&#8217;ve ever used this WordPress plug-in; when I selected pressed the &#8220;Analysis&#8221; button I had no idea of what to expect.  My initial score was a 78% and after a few tweaks I was able to bump it up to 100%.</p>
<p>I think <a title="SEO Tool for WordPress: Scribe" href="http://scribeseo.com/" target="_blank"><strong>Scribe</strong></a> is particularly useful for those learning Search Engine Optimization (SEO) techniques and can be a good reminder for those of us that already have experience. With that said, I think that it might be a worthwhile investment to keep yourself honest while learning; it may not be a must have indefinitely.</p>
<p>What did you think about Scribe (be kind&#8230;)? Would it be helpful to you? Would you use it?</p>
<p>Bill Rowland</p>
<div class="addthis_toolbox addthis_default_style addthis_32x32_style" addthis:url='http://www.dinkuminteractive.com/seo-tool-review-scribe-for-wordpress/' addthis:title='SEO Tool Review: Scribe for WordPress' ><a class="addthis_button_twitter"></a><a class="addthis_button_facebook"></a><a class="addthis_button_linkedin"></a><a class="addthis_button_google_plusone"></a></div>]]></content:encoded>
			<wfw:commentRss>http://www.dinkuminteractive.com/seo-tool-review-scribe-for-wordpress/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>

