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?
Hi volmering!
Please see – http://kriesi.at/documentation/enfold/replace-the-default-blog-latest-news-title/
Regards,
Yigit
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
works. thats why enfold is the best. cause of u guys ^^. thx alot