Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #358699

    i found here a thread about it, but im not sure that the “solution-link” is the right one.

    i tried the plugin codestyling – failed with the wp version 4.0

    any other solutions?

    #358703
    #358774
    This reply has been marked as private.
    #358881

    Hi!

    Please try to replace the code with this:

    add_filter('avf_title_args', 'fix_single_post_title', 10, 2);
    function fix_single_post_title($args,$id)
    {
        if ( $args['title'] == 'Blog - Die aktuellsten Neuigkeiten' )
        {
            $args['title'] = get_the_title($id);
            $args['link'] = get_permalink($id);
            $args['heading'] = 'h1';
        }
    
        return $args;
    }

    Best regards,
    Ismael

    #358928

    works. thats why enfold is the best. cause of u guys ^^. thx alot

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘change the text "Blog – Die aktuellsten Neuigkeiten"’ is closed to new replies.