<?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 on: Spelling WordPress Always Correctly</title>
	<atom:link href="http://wpengineer.com/725/spelling-wordpress-always-correctly/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/</link>
	<description>WordPress News, Hacks, Tips, Tutorials, Plugins and Themes</description>
	<lastBuildDate>Wed, 08 Feb 2012 19:48:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Andrew C</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-3552</link>
		<dc:creator>Andrew C</dc:creator>
		<pubDate>Fri, 19 Feb 2010 21:36:56 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-3552</guid>
		<description>#1 - How can I Correct the spelling when I save/publish a post? 

#2 - As you can see (in the code below) I&#039;m only changing the_title and looking for &quot;exclusive&quot; or &quot;mp3&quot; or both. How can I COMBINE this function?

this is my code:

# write EXCLUSIVE Correct
function writeexclusiveCorrect($content) {
	$content = str_ireplace(&quot;exclusive&quot;,&quot;EXCLUSIVE&quot;, $content);
	return $content;
}
add_filter(&#039;the_title&#039;, &#039;writeexclusiveCorrect&#039;,1);

# write MP3 Correct
function writemp3Correct($content) {
	$content = str_ireplace(&quot;mp3&quot;,&quot;MP3&quot;, $content);
	return $content;
}
add_filter(&#039;the_title&#039;, &#039;writemp3Correct&#039;,1);</description>
		<content:encoded><![CDATA[<p>#1 - How can I Correct the spelling when I save/publish a post? </p>
<p>#2 - As you can see (in the code below) I'm only changing the_title and looking for "exclusive" or "mp3" or both. How can I COMBINE this function?</p>
<p>this is my code:</p>
<p># write EXCLUSIVE Correct<br />
function writeexclusiveCorrect($content) {<br />
	$content = str_ireplace("exclusive","EXCLUSIVE", $content);<br />
	return $content;<br />
}<br />
add_filter('the_title', 'writeexclusiveCorrect',1);</p>
<p># write MP3 Correct<br />
function writemp3Correct($content) {<br />
	$content = str_ireplace("mp3","MP3", $content);<br />
	return $content;<br />
}<br />
add_filter('the_title', 'writemp3Correct',1);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-1513</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Sun, 19 Jul 2009 16:37:56 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-1513</guid>
		<description>vajay, i prefer to PHP5.</description>
		<content:encoded><![CDATA[<p>vajay, i prefer to PHP5.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: vijay</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-1510</link>
		<dc:creator>vijay</dc:creator>
		<pubDate>Sun, 19 Jul 2009 08:36:53 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-1510</guid>
		<description>I have PHP4 and PHP5 on my server. Which one should I choose for running wordpress?

And what needs to be changed in the default php.ini file?</description>
		<content:encoded><![CDATA[<p>I have PHP4 and PHP5 on my server. Which one should I choose for running wordpress?</p>
<p>And what needs to be changed in the default php.ini file?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-875</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Tue, 24 Mar 2009 07:39:36 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-875</guid>
		<description>Richard, not that i know.</description>
		<content:encoded><![CDATA[<p>Richard, not that i know.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-873</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Tue, 24 Mar 2009 06:34:29 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-873</guid>
		<description>Thanks Michael, so maybe the better bet is using QuickTags when possible.

Is there a way to show a list of all filters being loaded?</description>
		<content:encoded><![CDATA[<p>Thanks Michael, so maybe the better bet is using QuickTags when possible.</p>
<p>Is there a way to show a list of all filters being loaded?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Michael</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-870</link>
		<dc:creator>Michael</dc:creator>
		<pubDate>Mon, 23 Mar 2009 21:15:54 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-870</guid>
		<description>Richard: use this kind of functions carefully. Every filter slow down the peformance of your website. 
I don&#039;t see any security problems with filters like that.</description>
		<content:encoded><![CDATA[<p>Richard: use this kind of functions carefully. Every filter slow down the peformance of your website.<br />
I don't see any security problems with filters like that.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Richard</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-868</link>
		<dc:creator>Richard</dc:creator>
		<pubDate>Mon, 23 Mar 2009 17:42:06 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-868</guid>
		<description>Interesting function, you could do lots of things with this, like add a plugin function WriteMyPostalAddress
change &quot; to &#039; ...(&#039;myaddress&#039;,&#039;your html
more html
etc&#039;, $content);
add_filter ..WriteMyPostalAddress

The question  I have is say you do a series of plugin/function/shortcuts like this, is there an overhead? 
or is there any issues with that type of plugin shortcut?

Is there any additional security or any additional code I should add to this type of simple admin-less plugin?

As is, my WriteMyPostalAddress test using dreamweaver created wysiwyg table, code just plopped in, works great!</description>
		<content:encoded><![CDATA[<p>Interesting function, you could do lots of things with this, like add a plugin function WriteMyPostalAddress<br />
change " to ' ...('myaddress','your html<br />
more html<br />
etc', $content);<br />
add_filter ..WriteMyPostalAddress</p>
<p>The question  I have is say you do a series of plugin/function/shortcuts like this, is there an overhead?<br />
or is there any issues with that type of plugin shortcut?</p>
<p>Is there any additional security or any additional code I should add to this type of simple admin-less plugin?</p>
<p>As is, my WriteMyPostalAddress test using dreamweaver created wysiwyg table, code just plopped in, works great!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Come fare: Scrivere bene &#8220;WordPress&#8221; &#124; Altamente Decorativo</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-643</link>
		<dc:creator>Come fare: Scrivere bene &#8220;WordPress&#8221; &#124; Altamente Decorativo</dc:creator>
		<pubDate>Sun, 08 Feb 2009 23:13:18 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-643</guid>
		<description>[...] la pensate com Matt o per motivi vostri volete arrivare anche voi a questo risultato, su WpEngineer ho trovato questo codice da aggiungere al nostro [...]</description>
		<content:encoded><![CDATA[<p>[...] la pensate com Matt o per motivi vostri volete arrivare anche voi a questo risultato, su WpEngineer ho trovato questo codice da aggiungere al nostro [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Google&#8217;s now Evil? Is WordPress next? :: Christopher Ross</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-641</link>
		<dc:creator>Google&#8217;s now Evil? Is WordPress next? :: Christopher Ross</dc:creator>
		<pubDate>Sun, 08 Feb 2009 18:16:59 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-641</guid>
		<description>[...] it really such a bad thing to standardize on the name? As Michael points out at WP Engineer, it is a trademark and it should always be presented correctly but should Matt and the boys at [...]</description>
		<content:encoded><![CDATA[<p>[...] it really such a bad thing to standardize on the name? As Michael points out at WP Engineer, it is a trademark and it should always be presented correctly but should Matt and the boys at [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: WordPress Logogate - FirstDayBlack</title>
		<link>http://wpengineer.com/725/spelling-wordpress-always-correctly/#comment-594</link>
		<dc:creator>WordPress Logogate - FirstDayBlack</dc:creator>
		<pubDate>Mon, 02 Feb 2009 10:01:15 +0000</pubDate>
		<guid isPermaLink="false">http://wpengineer.com/?p=725#comment-594</guid>
		<description>[...] will, kann auch h&#228;ndisch ein Codesnippet in sein Theme einf&#252;gen, dass bei den WP-Engineers zu haben [...]</description>
		<content:encoded><![CDATA[<p>[...] will, kann auch h&#228;ndisch ein Codesnippet in sein Theme einf&#252;gen, dass bei den WP-Engineers zu haben [...]</p>
]]></content:encoded>
	</item>
</channel>
</rss>

