Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #260757

    Hallo
    Wie kann ich den sekrechten Trennstrich nach dem Titel entfernen?

    <!– page title, displayed in your browser bar –>
    <title>Thai Wörterbuch | </title>

    #260796

    Hi falki!

    Füge diesen Code in die enfold/functions.php oder deine child theme functions.php ein:

    
    add_filter('avf_title_tag', 'avia_change_title_tag', 10, 2);
    function avia_change_title_tag($title, $wptitle) {
    	$title = str_replace('|', '', $title );
            return $title;
    }
    

    Regards,
    Peter

    #260823

    thx!

Viewing 3 posts - 1 through 3 (of 3 total)
  • The topic ‘Entfernen des Trennstrichs’ is closed to new replies.