According to this topic concerning HTML in NEWSCAST's menus:
http://www.kriesi.at/support/topic/html-within-wp3-menu-manager-description
I've tried to find a solution, so that I can display HTML in the main menu descriptions of CORONA, too - for example <b> <br />
But the file structure at FTP is somehow others than at the NEWSCAST theme.
I've added this
remove_filter('nav_menu_description', 'strip_tags');
add_filter( 'wp_setup_nav_menu_item', 'cus_wp_setup_nav_menu_item' );
function cus_wp_setup_nav_menu_item($menu_item) {
$menu_item->description = apply_filters( 'nav_menu_description', $menu_item->post_content );
return $menu_item;
}
to functions.php, but this causes, that HTML is not "executed", just shown as normal text at the frontend.
So, this is not enough of editing files.
Kriesi wrote here about another file to change concerning NEWSCAST, but I haven't found such at CORONA's files:
http://www.kriesi.at/support/topic/html-within-wp3-menu-manager-description
Could you please tell me, how to add this possibility to CORONA, too?
Thanks.














