That’s widget titled “Meta,” and you can remove it from the Widgets section of the Customizer.
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;
}
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?
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;
}