mirror of
https://gh.wpcy.net/https://github.com/mainwp/Code-Snippets-Functions.git
synced 2026-04-30 11:42:22 +08:00
7 lines
288 B
Text
7 lines
288 B
Text
<?php
|
|
function remove_primary_menu_callback() {
|
|
remove_action( 'astra_masthead_toggle_buttons', 'astra_masthead_toggle_buttons_primary' );
|
|
remove_action( 'astra_masthead_content', 'astra_primary_navigation_markup', 10 );
|
|
}
|
|
add_action( 'init', 'remove_primary_menu_callback' );
|
|
?>
|