Then can you just use add_filter( &#39;the_content&#39;, &#39;mytheme_filter_the_content&#39; ), where<div><br></div><div>function mytheme_filter_the_content( $content ) {</div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>// Some conditional wrapper to filter only</div>
<div><span class="Apple-tab-span" style="white-space: pre; ">        </span>// in the correct context. For example, you</div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>// could query post custom meta, and determine</div>
<div><span class="Apple-tab-span" style="white-space: pre; ">        </span>// if the current page is a static Page, and whether</div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>// the current page is using your specific</div>
<div><span class="Apple-tab-span" style="white-space: pre; ">        </span>// custom page template.</div><div><br></div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>// Query the post metadata</div><div><div>
<span class="Apple-tab-span" style="white-space:pre">        </span>$pagetemplate = get_post_meta( $post-&gt;ID, &#39;_wp_page_template&#39;, true );</div></div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>// Check to see if the current page uses the specific custom page template</div>
<div><span class="Apple-tab-span" style="white-space: pre; ">        </span>if ( &#39;page-special-template.php&#39; == $pagetemplate ) {</div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span><span class="Apple-tab-span" style="white-space: pre; ">        </span>// Filter the_content here!</div>
<div><span class="Apple-tab-span" style="white-space: pre; ">        </span>}</div><div><span class="Apple-tab-span" style="white-space: pre; ">        </span>return $content;</div><div>}<br><br><div class="gmail_quote">On Thu, Aug 11, 2011 at 10:15 AM, Claude Needham <span dir="ltr">&lt;<a href="mailto:gxxaxx@gmail.com">gxxaxx@gmail.com</a>&gt;</span> wrote:<br>
<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex;">I guess I wanted to keep the apply_filters, and the str_replace that<br>
is found in the_content in place.<br>
<br>
I wanted to leave everything exactly how it would be if the_content<br>
was called, then do a small bit of post grab pre echo processing.<br>
<br>
Was basically trying to respect the core functions since I only<br>
understand about 10% of what is going on in the core.<br>
<font color="#888888"><br>
Claude<br>
</font><div><div></div><div class="h5"><br>
On Thu, Aug 11, 2011 at 8:08 AM, Chip Bennett &lt;<a href="mailto:chip@chipbennett.net">chip@chipbennett.net</a>&gt; wrote:<br>
&gt; Skimming your question briefly: is there any particular reason you can&#39;t use<br>
&gt; get_the_content()?<br>
&gt; Chip<br>
&gt;<br>
&gt; On Thu, Aug 11, 2011 at 9:59 AM, Claude Needham &lt;<a href="mailto:gxxaxx@gmail.com">gxxaxx@gmail.com</a>&gt; wrote:<br>
&gt;&gt;<br>
&gt;&gt; A comment was made in a recent thread expressing the opinion that<br>
&gt;&gt; using core WP functions were *always* preferred to rolling your own.<br>
&gt;&gt; This is a slight restatement. Chip&#39;s actual statement is at the bottom<br>
&gt;&gt; of this email. Point is this reminded me that I am not comfortable<br>
&gt;&gt; with some of the design solutions I have been using recently.<br>
&gt;&gt;<br>
&gt;&gt; I&#39;ll give you an example. In a recent special page I had need for a<br>
&gt;&gt; string of the_content.<br>
&gt;&gt;<br>
&gt;&gt; Because the_content does not have an option for echo=false, I was<br>
&gt;&gt; forced to reproduce the innards of the function.<br>
&gt;&gt;                $mycontent = get_the_content();<br>
&gt;&gt;                $mycontent = apply_filters(&#39;the_content&#39;, $mycontent);<br>
&gt;&gt;                $mycontent = str_replace(&#39;]]&gt;&#39;, &#39;]]&amp;gt;&#39;, $mycontent);<br>
&gt;&gt;                .... do stuff with $mycontent<br>
&gt;&gt;<br>
&gt;&gt; This means that if a fix is applied to the_content function my theme<br>
&gt;&gt; will not automatically have the advantage of the update. There are<br>
&gt;&gt; quite a few functions with forced echo: the_content, the_excerpt,<br>
&gt;&gt; post_class, body_class, the_meta, and the_guid.<br>
&gt;&gt;<br>
&gt;&gt; I&#39;m thinking there is a different design solution that I should be<br>
&gt;&gt; using. Or, could it be that adding echo=false is somewhere in queue<br>
&gt;&gt; for future release?<br>
&gt;&gt;<br>
&gt;&gt; Just wondering about the best practices here.<br>
&gt;&gt;<br>
&gt;&gt; Regards,<br>
&gt;&gt; Claude Needham<br>
&gt;&gt;<br>
&gt;&gt;<br>
&gt;&gt; Proper quote as promised.<br>
&gt;&gt; On Thu, Aug 11, 2011 at 5:57 AM, Chip Bennett &lt;<a href="mailto:chip@chipbennett.net">chip@chipbennett.net</a>&gt;<br>
&gt;&gt; wrote:<br>
&gt;&gt; &gt; In general, though, IMHO, it is *always* preferable to use a core WP<br>
&gt;&gt; &gt; function for content filtering and/or untrusted data<br>
&gt;&gt; &gt; sanitization/validation.<br>
&gt;&gt; &gt; Chip<br>
&gt;&gt; _______________________________________________<br>
&gt;&gt; theme-reviewers mailing list<br>
&gt;&gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt;&gt; <a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
&gt;<br>
&gt;<br>
&gt; _______________________________________________<br>
&gt; theme-reviewers mailing list<br>
&gt; <a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
&gt; <a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
&gt;<br>
&gt;<br>
_______________________________________________<br>
theme-reviewers mailing list<br>
<a href="mailto:theme-reviewers@lists.wordpress.org">theme-reviewers@lists.wordpress.org</a><br>
<a href="http://lists.wordpress.org/mailman/listinfo/theme-reviewers" target="_blank">http://lists.wordpress.org/mailman/listinfo/theme-reviewers</a><br>
</div></div></blockquote></div><br></div>