FEAT: Ajout d'un menu secondaire à dgauche vec liens Contact et À propos

This commit is contained in:
2025-10-08 15:24:30 +00:00
parent be36f341e5
commit 8b7a042189
3 changed files with 122 additions and 11 deletions
+8
View File
@@ -98,4 +98,12 @@ function wp_theme_sen2_check_for_updates($transient) {
}
return $transient;
}
function wp_theme_sen2_setup() {
register_nav_menus(array(
'primary' => 'Menu Principal',
'secondary' => 'Menu Secondaire' // Nouveau menu
));
add_theme_support('post-thumbnails');
add_theme_support('title-tag');
}
?>