Viewing 4 replies - 1 through 4 (of 4 total)
  • Moderator James Huff

    (@macmanx)

    That’s widget titled “Meta,” and you can remove it from the Widgets section of the Customizer.

    Thread Starter thaivoices

    (@thaivoices)

    Thank you kinldy James, however what I actually asked was:
    I wish to delete the meta menu items: Entries feed, Comments feed and WordPress.org
    I already know how to delete the entire Meta menu from the pages.
    I have found this script on the forum, it removes the 1st item on the menu but I have been unable to adapt it to remove the 3rd, the 4th and the 5th items.

    I suggest hiding the Register link using CSS.
    Please add the following CSS code in the Appearance > Customize > Additional CSS section of your WordPress Admin dashboard:
    
    /* Hide first menu item (Register) in default Meta Widget */
    .widget_meta > ul > li:nth-child(1) {
        display: none;
    }
    Also, the Register link is part of the default Meta widget.
    /* Hide first menu item (Register) in default Meta Widget */
    .widget_meta li:nth-child(1) {
        display: none;
    }
    Moderator James Huff

    (@macmanx)

    What you’re describing is a widget called Meta.

    You want to remove everything in the Meta widget, so why not just remove the Meta widget?

    Thread Starter thaivoices

    (@thaivoices)

    I wish to delete the meta menu items: Entries feed, Comments feed and WordPress.org
    I already know how to delete the entire Meta menu from the pages.
    I have found this script on the forum, it removes the 1st item on the menu but I have been unable to adapt it to remove the 3rd, the 4th and the 5th items.

    I suggest hiding the Register link using CSS.
    Please add the following CSS code in the Appearance > Customize > Additional CSS section of your WordPress Admin dashboard:

    /* Hide first menu item (Register) in default Meta Widget */
    .widget_meta > ul > li:nth-child(1) {
    display: none;
    }
    Also, the Register link is part of the default Meta widget.
    /* Hide first menu item (Register) in default Meta Widget */
    .widget_meta li:nth-child(1) {
    display: none;
    }

Viewing 4 replies - 1 through 4 (of 4 total)

The topic ‘Meta’ is closed to new replies.