• Is it possible to add a wysiwyg editor to the menu description? If so, how do I go about it?

    Thank you.

Viewing 1 replies (of 1 total)
  • masterbip

    (@masterbip)

    Se que se puede permitir html en la descripcion de los menu:

    /* Contenido html en descripcion de menu */
    remove_filter( 'nav_menu_description', 'strip_tags' );
    add_filter( 'wp_setup_nav_menu_item', 'mb_wp_setup_nav_menu_item' );
    function mb_wp_setup_nav_menu_item( $menu_item ) {
         $menu_item->description = apply_filters( 'nav_menu_description', $menu_item->post_content );
         return $menu_item;
    }

    Ahora estoy buscando la forma de agregar el wysiwyg en dicho campo (Obviamente sin usar plugins!). Si encuentro la manera la comparto aqui. Me da flojera ahora escribir en ingles dado que estoy concentrado trabajando, sorry.

    • This reply was modified 8 years ago by masterbip.
Viewing 1 replies (of 1 total)
  • The topic ‘Menu description wysiwyg’ is closed to new replies.