Now i have a question: i need to integrate a custom panel created
with MF1.4.1 with a custom taxonomy.
I do that:
1) craate the custom panel and its gruops and field (naming it
"mypanel")
2) insert in my funcion.php
> add_action('init', 'mytax', 0);
> function mytax(){
> register_taxonomy('name', 'mypanel', array(...al values i don't
write now ...));
>}
it won't works... taxonomy "name" won't compare in mypanel menu.
To check my code i changed "mypanel" in "post" inside
register_taxonomy and it appears in post menu...
have i to look for a different action event?