Good Afternoon!<br><br>I&#39;m looking for assistance in incorporating some core changes I&#39;ve made into a theme&#39;s functions.php file as opposed to me having to constantly change a core file.  This will also help me when upgrading installations.<br>

<br>A bit more about the changes I&#39;ve been making:<br><br>Within wp-includes/formatting.php I changed This around line 50:<pre>$dynamic_characters = array(&#39;/\&#39;(\d\d(?:’|\&#39;)?s)/&#39;, &#39;/(\s|\A|&quot;)\&#39;/&#39;, &#39;/(\d+)&quot;/&#39;, &#39;/(\d+)\&#39;/&#39;, &#39;/(\S)\&#39;([^\&#39;\s])/&#39;, &#39;/(\s|\A)&quot;(?!\s)/&#39;, &#39;/&quot;(\s|\S|\Z)/&#39;, &#39;/\&#39;([\s.]|\Z)/&#39;, &#39;/(\d+)x(\d+)/&#39;);<br>
    $dynamic_replacements = array(&#39;’$1&#39;,&#39;$1‘&#39;, &#39;$1″&#39;, &#39;$1′&#39;, &#39;$1’$2&#39;, &#39;$1“$2&#39;, &#39;� $1&#39;, &#39;’$1&#39;, &#39;$1×$2&#39;);</pre>with this:<br><pre>$dynamic_characters = array();<br>
    $dynamic_replacements = array();<br><br><font style="font-family: arial,helvetica,sans-serif;" size="2">And then</font><font style="font-family: arial,helvetica,sans-serif;" size="2"> this around line 47:</font><br><br>
 $static_characters = array_merge(array(&#39;---&#39;, &#39; -- &#39;, &#39;--&#39;, &#39;xn–&#39;, &#39;...&#39;, &#39;``&#39;, &#39;\&#39;s&#39;, &#39;\&#39;\&#39;&#39;, &#39; (tm)&#39;), $cockney);<br>    $static_replacements = array_merge(array(&#39;—&#39;, &#39; — &#39;, &#39;–&#39;, &#39;xn--&#39;, &#39;…&#39;, &#39;“&#39;, &#39;’s&#39;, &#39;� &#39;, &#39; ™&#39;), $cockneyreplace);<br>
<br><font style="font-family: arial,helvetica,sans-serif;" size="2">With this: </font><br><br> $static_characters = array_merge(array(&#39;---&#39;, &#39; -- &#39;, &#39;--&#39;, &#39;xn–&#39;, &#39; (tm)&#39;), $cockney);<br>
    $static_replacements = array_merge(array(&#39;—&#39;, &#39; — &#39;, &#39;–&#39;, &#39;xn--&#39;, &#39; ™&#39;), $cockneyreplace);<br></pre>The reason for these changes is that FLIR (<a href="http://facelift.mawhorter.net/">http://facelift.mawhorter.net/</a>) titles with special characters have not been rendering properly due to the way in which wordpress passes along the title to be replaced.  The above corrects that.<br>
<br>So the question is, can this be built into theme functions or am I out of luck?<br><br>I can be reached at celia.kyle AT <a href="http://gmail.com">gmail.com</a> with estimates.<br><br>Thanks!<br><br>Celia Kyle<br><a href="http://celiakyle.com" target="_blank">http://celiakyle.com</a><br>
<br>Don&#39;t just get Designed, Get Cesigned!<br><a href="http://getcesigned.com" target="_blank">http://getcesigned.com</a><br>