mirror of
https://github.com/KevinMidboe/rohnenedre.git
synced 2025-12-08 20:39:02 +00:00
13 lines
327 B
JavaScript
13 lines
327 B
JavaScript
(function($){
|
|
$( document ).ready( function() {
|
|
var $menu_item = $( '#toplevel_page_et_divi_options' );
|
|
|
|
if ( $menu_item.length ) {
|
|
var $first_menu_item = $menu_item.find( '.wp-first-item' );
|
|
|
|
if ( 'Divi' === $first_menu_item.find( 'a' ).text() ) {
|
|
$first_menu_item.remove();
|
|
}
|
|
}
|
|
});
|
|
})(jQuery) |