• hello, i have error in wp 3.7.1
    in my new post i add code: (domain/wp-admin/post-new.php)
    <h2 class=”boz01 conner8 candeu”><span style=”font-size: 12px;”>
    However when my code display :
    <h2 class=\”boz01 conner8 candeu\”><span style=”font-size: 12px;”>check</span></h2>

    How can you fix me?

Viewing 1 replies (of 1 total)
  • Thread Starter muadem1

    (@muadem1)

    hello,
    i think i fixed ?
    Can be:

    add_action('the_content','replace_code');
    
    function replace_code($content){
        $content=str_replace('\"','"',$content);
        return $content;
    }
Viewing 1 replies (of 1 total)

The topic ‘Error in wp when publish post’ is closed to new replies.