Skip to content

Instantly share code, notes, and snippets.

View lewsea's full-sized avatar
🎯
Focusing [ Hope so ]

Luis Victor Gudmalin lewsea

🎯
Focusing [ Hope so ]
View GitHub Profile
@imuhammadshoaib
imuhammadshoaib / class-wp-bootstrap-navwalker.php
Last active June 3, 2024 08:29
Make parent link clickable in Bootstrap with Wordpress NavWalker
//FROM
$atts['href'] = '#';
$atts['data-toggle'] = 'dropdown';
$atts['aria-haspopup'] = 'true';
$atts['aria-expanded'] = 'false';
$atts['class'] = 'dropdown-toggle nav-link';
$atts['id'] = 'menu-item-dropdown-' . $item->ID;
//TO
@luetkemj
luetkemj / wp-query-ref.php
Last active December 4, 2025 15:47
WP: Query $args
// This gist is now maintained on github at https://github.com/luetkemj/wp-query-ref
<?php
/**
* WordPress Query Comprehensive Reference
* Compiled by luetkemj - luetkemj.github.io
*
* CODEX: http://codex.wordpress.org/Class_Reference/WP_Query#Parameters
* Source: https://core.trac.wordpress.org/browser/tags/4.9.4/src/wp-includes/query.php
*/