Ok, that’s what I was looking for. Thanks
But now I have another problem.
To make the “generate_menu_bar_items” appears, I had to change the Structure (in Appearance – Customize – General) from Floats to Flexbox. After this change, my right sidebar is no sticky anymore.
Then I tried to change my Structure in Floats again, but I don’t see that option anymore, even if I cancel the Element – Block – Hook (generate_menu_bar-item). Was that choice irreversible?
I can keep the Structure in “Flexbox” anyway. But I would like my right sidebar sticky. I made my sidebar sticky with CSS:
@media (min-width: 769px) {
#right-sidebar {
position: -webkit-sticky;
position: sticky;
top: 3pc;
}
}
Bu it seems that it doesn’t work anymore.
What can I do now?