<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for WPSmith</title>
	<atom:link href="http://wpsmith.net/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpsmith.net</link>
	<description>My Journey with WordPress &#38; Genesis</description>
	<lastBuildDate>Wed, 16 May 2012 16:27:10 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>Comment on The Difference between do_action, add_action and add_filter by Travis Smith</title>
		<link>http://wpsmith.net/2011/wp/the-difference-between-do_action-add_action-and-add_filter/#comment-10251</link>
		<dc:creator>Travis Smith</dc:creator>
		<pubDate>Wed, 16 May 2012 16:27:10 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/?p=4348#comment-10251</guid>
		<description>Yes, programmers must speak conceptually to communicate to a broader audience simply because of the self-taught, DIYer, people don&#039;t really understand. Yes technically, do_action() calls another function _wp_call_all_hook() that uses the PHP function &lt;a href=&quot;http://php.net/manual/en/function.call-user-func-array.php&quot; title=&quot;call_user_func_array PHP function&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;call_user_func_array()&lt;/a&gt; to call a variable function. However, it is still correct to say that do_action essentially creates the hook. 

In my personal opinion, I believe in modular functional code based on a framework created by do_action(). You&#039;re right in that the way my code was written in that post is not the best representation. And it is true that if you have do_action() followed by add_action() the add_action() will not be executed. Here&#039;s what typically happens in WordPress. Take a home.php example. Here&#039;s an example of a home.php using hooks.
[php]
&lt;?php get_header(); 
do_action( &#039;wps_home_before_banner&#039; ); ?&gt;
&lt;div id=&quot;banner&quot;&gt;
	&lt;?php do_action( &#039;wps_banner&#039; ); ?&gt;
&lt;/div&gt;&lt;!-- end #banner --&gt;
&lt;div class=&quot;banner-shadow&quot;&gt;&lt;/div&gt;
	
&lt;?php 
do_action( &#039;wps_home_before&#039; ); ?&gt;
&lt;div id=&quot;content-sidebar-wrap&quot;&gt;
	&lt;div id=&quot;content&quot;&gt;
	&lt;?php do_action( &#039;wps_content&#039; ); ?&gt;
	&lt;/div&gt;
	&lt;?php get_sidebar(); ?&gt;
&lt;/div&gt;

&lt;?php do_action( &#039;genesis_home_after&#039; );

get_footer();
[/php]

So in this code, I&#039;ve hardcoded a frame with some hooks to write modular code. While I still do not believe this to be the best method, it is how more and more themes are operating. As you can see I have no add_action() statements here. In other files (e.g., functions.php, other theme files, a plugin, etc.) I would have the functions that hook into this to create the home page. So consider a home-functions.php that looks something like this:
[php]&lt;?php
add_action( &#039;wps_banner&#039;, &#039;wps_do_banner&#039; );
/**
 * Outputs widgeted slider area
 */
function wps_do_banner() {
?&gt;
	&lt;div class=&quot;slider&quot;&gt;
		&lt;?php if ( ! dynamic_sidebar(&#039;home-slider&#039; ) ) : ?&gt;
		&lt;div class=&quot;widget&quot;&gt;
			&lt;h3&gt;&lt;?php _e( &#039;Home Slider&#039;, &#039;genesis&#039; ); ?&gt;&lt;/h3&gt;
			&lt;p&gt;&lt;?php _e( &#039;Designed for a Slider&#039;, &#039;genesis&#039; ); ?&gt;&lt;/p&gt;
		&lt;/div&gt;			
		&lt;?php endif; ?&gt;
	&lt;/div&gt;&lt;!-- end .slider --&gt;
&lt;?php
}

add_action( &#039;wps_banner&#039;, &#039;wps_do_search&#039; );
/**
 * Outputs widgeted search area
 */
function wps_do_search() {
?&gt;
	&lt;div class=&quot;home-search&quot;&gt;
		&lt;h3&gt;&lt;?php _e( &#039;Homes for Sale&#039; , &#039;genesis&#039; ); ?&gt;&lt;/h3&gt;
		&lt;?php if ( !dynamic_sidebar( &#039;home-search&#039; ) ) : ?&gt;
		&lt;div class=&quot;widget&quot;&gt;
			&lt;h3&gt;&lt;?php _e(&#039;Home Search Area&#039; , &#039;genesis&#039; ); ?&gt;&lt;/h3&gt;
			&lt;p&gt;&lt;?php _e(&#039;Designed for the MLS Home Search Widget&#039; , &#039;genesis&#039; ); ?&gt;&lt;/p&gt;
		&lt;/div&gt;			
		&lt;?php endif; ?&gt;
	&lt;/div&gt;&lt;!-- end .home-search --&gt;
&lt;?php
}

add_action( &#039;wps_banner&#039;, &#039;wps_clear&#039; );
/**
 * Outputs clearfix
 */
function wps_clear() {
	echo &#039;&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;&#039;;
}

add_action( &#039;wps_banner&#039;, &#039;wps_banner_bottom&#039; );
/**
 * Outputs widgeted call of actions area
 */
function wps_banner_bottom() { 
?&gt;
	&lt;?php if ( is_active_sidebar( &#039;banner-bottom&#039; ) ) : ?&gt;
	&lt;div class=&quot;bottom-widget&quot;&gt;
		&lt;div class=&quot;wrap&quot;&gt;
		&lt;?php if ( ! dynamic_sidebar( &#039;banner-bottom&#039; ) ) : ?&gt;
		&lt;div class=&quot;widget&quot;&gt;
			&lt;h3&gt;&lt;?php _e(&#039;Widget Area&#039;, &#039;genesis&#039; ); ?&gt;&lt;/h3&gt;
			&lt;p&gt;&lt;?php _e(&#039;Designed for Call of Actions or Featured Listings&#039;, &#039;genesis&#039; ); ?&gt;&lt;/p&gt;
		&lt;/div&gt;			
		&lt;?php endif; ?&gt;
		
		&lt;/div&gt;&lt;!-- end .wrap --&gt;
	&lt;/div&gt;&lt;!-- end .bottom-widget --&gt;
	
	&lt;?php
	endif;  
}

add_action( &#039;wps_content&#039;, &#039;wps_do_feature_content&#039; );
/**
 * Outputs widgeted feature content area
 */
function wps_do_feature_content() {
?&gt;
	&lt;?php if ( ! dynamic_sidebar( &#039;Home&#039; ) ) : ?&gt;
	&lt;div class=&quot;widget&quot;&gt;
		&lt;h3&gt;&lt;?php _e( &#039;Widget Area&#039; , &#039;genesis&#039; ); ?&gt;&lt;/h3&gt;
		&lt;p&gt;&lt;?php _e( &#039;Designed for Call of Actions or Featured Listings&#039;, &#039;genesis&#039; ); ?&gt;&lt;/p&gt;
	&lt;/div&gt;			
	&lt;?php endif; ?&gt;
}
[/php]

Now in a framework like Genesis, this becomes much simpler because these hooks pre-exist inside the genesis() function call, so hardcoding a home.php file is not necessary. So the home.php file would look more like the second part of modular function code than anything. So...
[php]&lt;?php 

// Remove Breadcrumbs
remove_action(&#039;genesis_before_loop&#039;, &#039;genesis_do_breadcrumbs&#039;);

// Add Banner
add_action( &#039;genesis_after_header&#039;, &#039;wps_do_banner&#039; );
//previous code

// Add Search widget
add_action( &#039;genesis_after_header&#039;, &#039;wps_do_search&#039; );
//previous code

add_action( &#039;genesis_after_header&#039;, &#039;wps_clear&#039; );
//previous code

add_action( &#039;genesis_after_header&#039;, &#039;wps_banner_bottom&#039; );
//previous code

// Add Optional Features Area
add_action( &#039;genesis_before_loop&#039;, &#039;wps_do_feature_content&#039; );
//previous code

genesis();
[/php]

Even using genesis(); I am calling all the add_actions prior to the execution of the do_actions. Does this clarify a bit more?</description>
		<content:encoded><![CDATA[<p>Yes, programmers must speak conceptually to communicate to a broader audience simply because of the self-taught, DIYer, people don&#8217;t really understand. Yes technically, do_action() calls another function _wp_call_all_hook() that uses the PHP function <a href="http://php.net/manual/en/function.call-user-func-array.php" title="call_user_func_array PHP function" target="_blank" rel="nofollow">call_user_func_array()</a> to call a variable function. However, it is still correct to say that do_action essentially creates the hook. </p>
<p>In my personal opinion, I believe in modular functional code based on a framework created by do_action(). You&#8217;re right in that the way my code was written in that post is not the best representation. And it is true that if you have do_action() followed by add_action() the add_action() will not be executed. Here&#8217;s what typically happens in WordPress. Take a home.php example. Here&#8217;s an example of a home.php using hooks.</p>
<pre class="brush: php; title: ; notranslate">
&lt;?php get_header();
do_action( 'wps_home_before_banner' ); ?&gt;
&lt;div id=&quot;banner&quot;&gt;
	&lt;?php do_action( 'wps_banner' ); ?&gt;
&lt;/div&gt;&lt;!-- end #banner --&gt;
&lt;div class=&quot;banner-shadow&quot;&gt;&lt;/div&gt;

&lt;?php
do_action( 'wps_home_before' ); ?&gt;
&lt;div id=&quot;content-sidebar-wrap&quot;&gt;
	&lt;div id=&quot;content&quot;&gt;
	&lt;?php do_action( 'wps_content' ); ?&gt;
	&lt;/div&gt;
	&lt;?php get_sidebar(); ?&gt;
&lt;/div&gt;

&lt;?php do_action( 'genesis_home_after' );

get_footer();
</pre>
<p>So in this code, I&#8217;ve hardcoded a frame with some hooks to write modular code. While I still do not believe this to be the best method, it is how more and more themes are operating. As you can see I have no add_action() statements here. In other files (e.g., functions.php, other theme files, a plugin, etc.) I would have the functions that hook into this to create the home page. So consider a home-functions.php that looks something like this:</p>
<pre class="brush: php; title: ; notranslate">&lt;?php
add_action( 'wps_banner', 'wps_do_banner' );
/**
 * Outputs widgeted slider area
 */
function wps_do_banner() {
?&gt;
	&lt;div class=&quot;slider&quot;&gt;
		&lt;?php if ( ! dynamic_sidebar('home-slider' ) ) : ?&gt;
		&lt;div class=&quot;widget&quot;&gt;
			&lt;h3&gt;&lt;?php _e( 'Home Slider', 'genesis' ); ?&gt;&lt;/h3&gt;
			&lt;p&gt;&lt;?php _e( 'Designed for a Slider', 'genesis' ); ?&gt;&lt;/p&gt;
		&lt;/div&gt;
		&lt;?php endif; ?&gt;
	&lt;/div&gt;&lt;!-- end .slider --&gt;
&lt;?php
}

add_action( 'wps_banner', 'wps_do_search' );
/**
 * Outputs widgeted search area
 */
function wps_do_search() {
?&gt;
	&lt;div class=&quot;home-search&quot;&gt;
		&lt;h3&gt;&lt;?php _e( 'Homes for Sale' , 'genesis' ); ?&gt;&lt;/h3&gt;
		&lt;?php if ( !dynamic_sidebar( 'home-search' ) ) : ?&gt;
		&lt;div class=&quot;widget&quot;&gt;
			&lt;h3&gt;&lt;?php _e('Home Search Area' , 'genesis' ); ?&gt;&lt;/h3&gt;
			&lt;p&gt;&lt;?php _e('Designed for the MLS Home Search Widget' , 'genesis' ); ?&gt;&lt;/p&gt;
		&lt;/div&gt;
		&lt;?php endif; ?&gt;
	&lt;/div&gt;&lt;!-- end .home-search --&gt;
&lt;?php
}

add_action( 'wps_banner', 'wps_clear' );
/**
 * Outputs clearfix
 */
function wps_clear() {
	echo '&lt;div class=&quot;clear&quot;&gt;&lt;/div&gt;';
}

add_action( 'wps_banner', 'wps_banner_bottom' );
/**
 * Outputs widgeted call of actions area
 */
function wps_banner_bottom() {
?&gt;
	&lt;?php if ( is_active_sidebar( 'banner-bottom' ) ) : ?&gt;
	&lt;div class=&quot;bottom-widget&quot;&gt;
		&lt;div class=&quot;wrap&quot;&gt;
		&lt;?php if ( ! dynamic_sidebar( 'banner-bottom' ) ) : ?&gt;
		&lt;div class=&quot;widget&quot;&gt;
			&lt;h3&gt;&lt;?php _e('Widget Area', 'genesis' ); ?&gt;&lt;/h3&gt;
			&lt;p&gt;&lt;?php _e('Designed for Call of Actions or Featured Listings', 'genesis' ); ?&gt;&lt;/p&gt;
		&lt;/div&gt;
		&lt;?php endif; ?&gt;

		&lt;/div&gt;&lt;!-- end .wrap --&gt;
	&lt;/div&gt;&lt;!-- end .bottom-widget --&gt;

	&lt;?php
	endif;
}

add_action( 'wps_content', 'wps_do_feature_content' );
/**
 * Outputs widgeted feature content area
 */
function wps_do_feature_content() {
?&gt;
	&lt;?php if ( ! dynamic_sidebar( 'Home' ) ) : ?&gt;
	&lt;div class=&quot;widget&quot;&gt;
		&lt;h3&gt;&lt;?php _e( 'Widget Area' , 'genesis' ); ?&gt;&lt;/h3&gt;
		&lt;p&gt;&lt;?php _e( 'Designed for Call of Actions or Featured Listings', 'genesis' ); ?&gt;&lt;/p&gt;
	&lt;/div&gt;
	&lt;?php endif; ?&gt;
}
</pre>
<p>Now in a framework like Genesis, this becomes much simpler because these hooks pre-exist inside the genesis() function call, so hardcoding a home.php file is not necessary. So the home.php file would look more like the second part of modular function code than anything. So&#8230;</p>
<pre class="brush: php; title: ; notranslate">&lt;?php 

// Remove Breadcrumbs
remove_action('genesis_before_loop', 'genesis_do_breadcrumbs');

// Add Banner
add_action( 'genesis_after_header', 'wps_do_banner' );
//previous code

// Add Search widget
add_action( 'genesis_after_header', 'wps_do_search' );
//previous code

add_action( 'genesis_after_header', 'wps_clear' );
//previous code

add_action( 'genesis_after_header', 'wps_banner_bottom' );
//previous code

// Add Optional Features Area
add_action( 'genesis_before_loop', 'wps_do_feature_content' );
//previous code

genesis();
</pre>
<p>Even using genesis(); I am calling all the add_actions prior to the execution of the do_actions. Does this clarify a bit more?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on The Difference between do_action, add_action and add_filter by Gil Yoder</title>
		<link>http://wpsmith.net/2011/wp/the-difference-between-do_action-add_action-and-add_filter/#comment-10250</link>
		<dc:creator>Gil Yoder</dc:creator>
		<pubDate>Wed, 16 May 2012 14:05:29 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/?p=4348#comment-10250</guid>
		<description>I am a little confused by the descriptions I&#039;ve read here and at other places that describe do_action  as a function that &quot;creates a hook&quot; and the conclusion that it is the &quot;first domino in the chain of events with hooks.&quot; When I first saw do_action described this way, I thought it was a joke that someone was playing, but after seeing it in numerous other sites, I realize that this is really how programmers are describing it. To me though the description is confusing and misleading.

It must be that these methods are being described from a conceptual point of view rather than from a concrete point of view. Conceptually when a programmer uses do_action he is creating a hook that other programmers can use to actions into his function, but that is what the programmer is doing; it is not the do_action method creating the hook. The method rather is executing (or doing) an action if an action exists for it to do.

If any method is creating a hook, then the hook is being created by add_action, not do_action, because in order for do_action to do anything useful, at least one add_action must have been called for the hook that do_action will use to execute the action.

The confusion that comes from describing do_action as creating a hook can be illustrated by some of your code. At the bottom of your post you have code that calls &quot;do_action( &#039;my_action&#039; ),&quot; then &quot;add_filter( &#039;my_action&#039; , &#039;my_function&#039;)&quot; to illustrate that PHP is forgiving and that filters can be used like actions. But in your code because add_filter follows do_action, add_filter does not impact the behavior of do_action. Even it if were changed to add_action it would have no impact. Before do_action can have any impact add_action needs to be called first to give do_action something to &quot;do.&quot;

Isn&#039;t this right?</description>
		<content:encoded><![CDATA[<p>I am a little confused by the descriptions I&#8217;ve read here and at other places that describe do_action  as a function that &#8220;creates a hook&#8221; and the conclusion that it is the &#8220;first domino in the chain of events with hooks.&#8221; When I first saw do_action described this way, I thought it was a joke that someone was playing, but after seeing it in numerous other sites, I realize that this is really how programmers are describing it. To me though the description is confusing and misleading.</p>
<p>It must be that these methods are being described from a conceptual point of view rather than from a concrete point of view. Conceptually when a programmer uses do_action he is creating a hook that other programmers can use to actions into his function, but that is what the programmer is doing; it is not the do_action method creating the hook. The method rather is executing (or doing) an action if an action exists for it to do.</p>
<p>If any method is creating a hook, then the hook is being created by add_action, not do_action, because in order for do_action to do anything useful, at least one add_action must have been called for the hook that do_action will use to execute the action.</p>
<p>The confusion that comes from describing do_action as creating a hook can be illustrated by some of your code. At the bottom of your post you have code that calls &#8220;do_action( &#8216;my_action&#8217; ),&#8221; then &#8220;add_filter( &#8216;my_action&#8217; , &#8216;my_function&#8217;)&#8221; to illustrate that PHP is forgiving and that filters can be used like actions. But in your code because add_filter follows do_action, add_filter does not impact the behavior of do_action. Even it if were changed to add_action it would have no impact. Before do_action can have any impact add_action needs to be called first to give do_action something to &#8220;do.&#8221;</p>
<p>Isn&#8217;t this right?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Displaying Custom Post Types by Travis Smith</title>
		<link>http://wpsmith.net/2011/custom-post-types/understanding-wordpress-custom-post-types-displaying-custom-post-types/#comment-10223</link>
		<dc:creator>Travis Smith</dc:creator>
		<pubDate>Mon, 14 May 2012 00:01:01 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/?p=2723#comment-10223</guid>
		<description>Hello Pipeline, you need something like this inside your function:
[php]
global $post;
if ( &#039;listing&#039; == $post-&gt;post_type ) {
    //execute code
}[/php]</description>
		<content:encoded><![CDATA[<p>Hello Pipeline, you need something like this inside your function:</p>
<pre class="brush: php; title: ; notranslate">
global $post;
if ( 'listing' == $post-&gt;post_type ) {
    //execute code
}</pre>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Add a Login Form to the Primary Navigation Menu in Genesis by Travis Smith</title>
		<link>http://wpsmith.net/2011/wp/how-to-add-a-login-form-to-the-primary-navigation-menu-in-genesis/#comment-10222</link>
		<dc:creator>Travis Smith</dc:creator>
		<pubDate>Sun, 13 May 2012 23:59:18 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/?p=4790#comment-10222</guid>
		<description>Hello,

This is up to the style of your theme, and is not part of the code.

Thanks,</description>
		<content:encoded><![CDATA[<p>Hello,</p>
<p>This is up to the style of your theme, and is not part of the code.</p>
<p>Thanks,</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Write a Genesis Custom Loop for Specific Categories in a Genesis Page Template by Travis Smith</title>
		<link>http://wpsmith.net/2011/genesis/how-to-write-a-genesis-custom-loop-for-specific-categories-in-a-genesis-page-template/#comment-10221</link>
		<dc:creator>Travis Smith</dc:creator>
		<pubDate>Sun, 13 May 2012 23:33:22 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/?p=1434#comment-10221</guid>
		<description>Hi, you probably want to investigate &lt;a href=&quot;http://wordpress.org/extend/plugins/display-posts-shortcode/&quot; title=&quot;Display Posts Shortcode&quot; target=&quot;_blank&quot; rel=&quot;nofollow&quot;&gt;Display Posts by Bill Erickson&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Hi, you probably want to investigate <a href="http://wordpress.org/extend/plugins/display-posts-shortcode/" title="Display Posts Shortcode" target="_blank" rel="nofollow">Display Posts by Bill Erickson</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Make the Top-Level Menu Items Non-clickable in WordPress Custom Menus by Travis Smith</title>
		<link>http://wpsmith.net/2011/genesis/how-to-make-the-top-level-menu-items-non-clickable-in-wordpress-custom-menu/#comment-10220</link>
		<dc:creator>Travis Smith</dc:creator>
		<pubDate>Sun, 13 May 2012 23:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/?p=895#comment-10220</guid>
		<description>Drag and drop it anywhere you want the item to appear.</description>
		<content:encoded><![CDATA[<p>Drag and drop it anywhere you want the item to appear.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Automatically Add Custom Taxonomies to a WordPress Menu by Travis Smith</title>
		<link>http://wpsmith.net/2011/wp/how-to-automatically-add-custom-taxonomies-to-a-wordpress-menu/#comment-10219</link>
		<dc:creator>Travis Smith</dc:creator>
		<pubDate>Sun, 13 May 2012 22:49:43 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/?p=5302#comment-10219</guid>
		<description>Hello Ivan,

Which direction did you take this? You can also see Viper&#039;s plugin: &lt;a href=&quot;http://wordpress.org/extend/plugins/add-descendants-as-submenu-items/&quot; title=&quot;Add Descendants As Submenu Items&quot; rel=&quot;nofollow&quot;&gt;Add Descendants As Submenu Items&lt;/a&gt;.</description>
		<content:encoded><![CDATA[<p>Hello Ivan,</p>
<p>Which direction did you take this? You can also see Viper&#8217;s plugin: <a href="http://wordpress.org/extend/plugins/add-descendants-as-submenu-items/" title="Add Descendants As Submenu Items" rel="nofollow">Add Descendants As Submenu Items</a>.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Gravity Forms ExactTarget Add-on by Travis Smith</title>
		<link>http://wpsmith.net/gf-plugins/gravity-forms-exacttarget/#comment-10218</link>
		<dc:creator>Travis Smith</dc:creator>
		<pubDate>Sun, 13 May 2012 22:47:25 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/2012/wp/gravity-forms-exacttarget/#comment-10218</guid>
		<description>Hello Dave,

Please see the &lt;a href=&quot;http://wordpress.org/extend/plugins/gravity-forms-exacttarget/&quot; rel=&quot;nofollow&quot;&gt;plugin author&lt;/a&gt; for this.</description>
		<content:encoded><![CDATA[<p>Hello Dave,</p>
<p>Please see the <a href="http://wordpress.org/extend/plugins/gravity-forms-exacttarget/" rel="nofollow">plugin author</a> for this.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Add Genesis Custom Content Columns to the Editor (to Appear in Visual Mode) by Travis Smith</title>
		<link>http://wpsmith.net/2011/genesis/how-to-add-genesis-custom-columns-to-the-editor-to-appear-in-visual-mode/#comment-10217</link>
		<dc:creator>Travis Smith</dc:creator>
		<pubDate>Sun, 13 May 2012 22:46:15 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/?p=5462#comment-10217</guid>
		<description>Did you check in HTML tab to see if you have the first over-riding the second. Due to TinyMCE there are limitations to doing it this way and is not SUPER-user friendly.</description>
		<content:encoded><![CDATA[<p>Did you check in HTML tab to see if you have the first over-riding the second. Due to TinyMCE there are limitations to doing it this way and is not SUPER-user friendly.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on How to Create a Custom Form Field in Gravity Forms with a Terms of Service Form Field Example by Travis Smith</title>
		<link>http://wpsmith.net/2011/plugins/how-to-create-a-custom-form-field-in-gravity-forms-with-a-terms-of-service-form-field-example/#comment-10216</link>
		<dc:creator>Travis Smith</dc:creator>
		<pubDate>Sun, 13 May 2012 22:45:08 +0000</pubDate>
		<guid isPermaLink="false">http://wpsmith.net/?p=6428#comment-10216</guid>
		<description>Hello Leonidas, Please see &lt;a href=&quot;http://gravityhelp.com&quot; title=&quot;Gravity Help&quot; rel=&quot;nofollow&quot;&gt;Gravity Help&lt;/a&gt; for that.</description>
		<content:encoded><![CDATA[<p>Hello Leonidas, Please see <a href="http://gravityhelp.com" title="Gravity Help" rel="nofollow">Gravity Help</a> for that.</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: enhanced

Served from: wpsmith.net @ 2012-05-18 12:44:12 -->
