Skip to content

Instantly share code, notes, and snippets.

View thekorko's full-sized avatar
🌴
Taking some time off

Guillermo Sebastian thekorko

🌴
Taking some time off
  • Quartex Network
  • Argentina
View GitHub Profile
@danieljwonder
danieljwonder / functions.php
Created December 20, 2018 23:07
Enqueue Font Awesome 5 in WordPress
<?php
// Enqueue Font Awesome 5 in WordPress
function tme_load_font_awesome() {
// You can find the current URL for the latest version here: https://fontawesome.com/start
wp_enqueue_style( 'font-awesome-free', '//use.fontawesome.com/releases/v5.6.3/css/all.css' );
}
add_action( 'wp_enqueue_scripts', 'tme_load_font_awesome' );
@kirandash
kirandash / custom_navwalker.php
Created March 17, 2017 07:07
Split WordPress menu or wp_nav_menu in 2 columns
<?php
class SplitMenuWalker extends Walker_Nav_Menu {
var $current_menu = null;
var $break_point = null;
var $displayed = 0;
function start_el(&$output, $item, $depth, $args) {
global $wp_query;