Skip to content

Instantly share code, notes, and snippets.

View jekkilekki's full-sized avatar

Aaron Snowberger jekkilekki

View GitHub Profile
@jekkilekki
jekkilekki / backtotop-button-in-wp.md
Last active July 27, 2017 21:51
Make a Back to Top button in WordPress
@link https://premium.wpmudev.org/blog/back-to-top-button-wordpress/
@jekkilekki
jekkilekki / dynamic-copyright-WP.md
Last active January 28, 2016 20:56
Creating a Dynamic Copyright in WordPress
@jekkilekki
jekkilekki / wp-social-menu.md
Created September 22, 2015 09:12
Social Menu Code from Justin Tadlock

Register Social menu in functions.php

register_nav_menus( array(
    'top'     => esc_html__( 'Top Menu', 'theme-slug' ),
    'social'  => esc_html__( 'Social Menu', 'theme-slug' ),
) );

Create menu in inc/template-tags.php

@jekkilekki
jekkilekki / wp-fancy-excerpt.md
Last active September 22, 2015 09:03
Better Post excerpts for WordPress
/**
 * Fancy excerpts
 * 
 * @link: http://wptheming.com/2015/01/excerpt-versus-content-for-archives/
 */
function the_fancy_excerpt() {
    global $post;
    if ( has_excerpt() ) :
 the_excerpt();
@jekkilekki
jekkilekki / wp-localhost-dev.md
Last active September 20, 2015 20:19
Basic WP Development Environment

#Basic WP Localhost Dev Env ######(Localhost Development Environment)

  • Localhost environment (Bitnami, MAMP, WAMP, XAMPP)
  • Local install of WP
  • Code Editor (NetBeans IDE, Sublime Text 3)
  • Browser with developer tools (Chrome F12)
  • Version control (git + GitHub)

Include Sass?

@jekkilekki
jekkilekki / localhost-wp-multisite.md
Last active September 19, 2015 21:49
Run Localhost WP Multisite

WordPress Multisite won't run on any port except 80 apparently (not tested). :8080 != :80

  1. Install Bitnami WP Multisite
  2. Modify hosts file to point 127.0.0.1 to your chosen domain
  3. Log in to WP and set up Multisite
  4. For every new subdomain, add it to the hosts file : 127.0.0.1 sub.your.domain

Modify hosts

Mac (Terminal):