Skip to content

Instantly share code, notes, and snippets.

View jtechera's full-sized avatar

Juan Techera jtechera

  • Uruguay
  • 14:18 (UTC -03:00)
View GitHub Profile
@cdsaenz
cdsaenz / bs5-navwalker.php
Last active April 22, 2025 18:17
Wordpress Bootstrap 5 Nav Walker With Multiple Levels
<?php
/**
* CSDev - Bootstrap 5 wp_nav_menu walker
* Supports WP MultiLevel menus
* Based on https://github.com/AlexWebLab/bootstrap-5-wordpress-navbar-walker
* Requires additional CSS fixes
* CSS at https://gist.github.com/cdsaenz/d401330ba9705cfe7c18b19634c83004
* CHANGE: removed custom display_element. Just call the menu with a $depth of 3 or more.
*/
class bs5_Walker extends Walker_Nav_menu
@jtechera
jtechera / show_errors.php
Last active February 8, 2017 14:00
Show PHP errors
<?php
error_reporting(E_ALL);
ini_set('display_errors', 1);