To add a divider as a menu item in the WordPress admin menu, you can use the following steps:
#
as the URL (this is just a placeholder and won’t be used).
. This will prevent the label from displaying.menu-divider
..menu-divider {
border-top: 1px solid #000; /*change to any color hex code*/
width: 100%;
height: 1px;
margin: 5px 0; /* Adjust margin as needed */
padding: 0;
pointer-events: none; /* Prevent interaction with the divider */
}