ドロップダウンメニューにメニュー項目を移動する方法

How to move outside menu links, like My post, New, Unread, Top, Category to the drop down menu?

Or is there any way to just hide outside Category link from the menu? Because we only need the dropdown all category and not the outside one.

If you don’t want any of these links, you can hide them with CSS:

#navigation-bar {
    display: none;
}
「いいね!」 1

Only outside categories link I don’t want! Any way to hide that specific link?

I have used this to hide Categories & All tags!

#ember48 {
    display: none;
}

#ember35 {
    display: none;
}

Check out this theme-component by @jordan.vidrine, it could be what you are looking for Compact Nav

「いいね!」 3

Thank you so much! :heart:

「いいね!」 1

This topic was automatically closed 0 minutes after the last reply. New replies are no longer allowed.