Skip to content

Instantly share code, notes, and snippets.

@nickdavis
nickdavis / gist:5320863
Last active December 15, 2015 20:48
Change Twitter link in Genesis Primary Navigation Extras to open in new window
add_filter( 'genesis_nav_items', 'nd_twitter_tweak', 10, 2 );
add_filter( 'wp_nav_menu_items', 'nd_twitter_tweak', 10, 2 );
/**
* Change Twitter link in Genesis Primary Navigation Extras to open in new window
* @author Nick Davis (adpated from Bill Erickson code in the link below)
* @author Bill Erickson
* @link https://gist.github.com/esanctuary/5320863
* @link http://www.billerickson.net/genesis-wordpress-nav-menu-content/
*
* @param string $menu
@nickdavis
nickdavis / ajax-call.php
Last active July 8, 2019 18:13
Cookies with a cached WordPress website (on WP Engine)
<?php
// Call Ajax
add_action( 'wp_ajax_ajax_action', 'esanctuary_sidebar_cookie'); // ajax for logged in users
add_action( 'wp_ajax_nopriv_ajax_action', 'esanctuary_sidebar_cookie' ); // ajax for not logged in users
@nickdavis
nickdavis / add_wordpress_admin_account_via_ftp.php
Created November 9, 2013 16:08
Use with extreme caution only. Place the code (after <?php) in your active theme's functions.php file and then load one page on the website. Afterwards delete code from functions.php immediately, login with your new admin username and password and then change your password immediately.
<?php
/*
* Create New Admin Account in WordPress via FTP
* @link: http://stephanis.info/2011/08/11/create-new-admin-account-in-wordpress-via-ftp/
*
*/
function add_admin_acct(){
$login = 'myacct1';
@nickdavis
nickdavis / gist:10524049
Created April 12, 2014 08:05
.htaccess 301 redirect entire directory (e.g. images folder moves from one place to another)
#301 Redirect Entire Directory
RedirectMatch 301 ^/blog/wp-content/uploads/(.*) http://www.domain.com/wp-content/uploads/$1
@nickdavis
nickdavis / gist:10525079
Created April 12, 2014 08:41
.htaccess 301 redirect local WordPress dev site images folder to live website images folder (to save fllling up local drive with 1000's of unnecessary images)
#301 Redirect Local Images to Live
RedirectMatch 301 ^/wp-content/uploads/(.*) http://livewebsite.com/wp-content/uploads/$1
@nickdavis
nickdavis / pricing-table.html
Last active December 16, 2015 15:31
Pricing Table example for LeanThemes.co
<div class="pricing-table">
<div class="pricing-column one-third first">
<div class="pricing-content">
<h4>Start Right</h4>
<p>A wonderful piece of kit.</p>
<ul>
<li>Two Pens</li>
<li>A Ruler</li>
<li>A Notepad & more</li>
</ul>
@nickdavis
nickdavis / text-widget.html
Created April 23, 2014 14:19
Featured List example for LeanThemes.co
<ul class="featured">
<li>Saves you time</li>
<li>Makes you feel part of the community</li>
<li>Saves you money</li>
</ul>
@nickdavis
nickdavis / vimeo-example.html
Created April 23, 2014 14:23
Vimeo iframe example for LeanThemes.co
<iframe src="//player.vimeo.com/video/40548631?title=0&amp;byline=0&amp;portrait=0" width="960" height="540" frameborder="0" webkitallowfullscreen mozallowfullscreen allowfullscreen></iframe>
@nickdavis
nickdavis / contact-box.html
Created April 23, 2014 14:27
Contact Box code example for LeanThemes.co
<p>We look forward to hearing from you. Really.</p>
<div class="one-half first">
<p class="address">1 Happy Lane,
Timbuctoo,
01345 Swaziland</p>
</div>
<div class="one-half">
<p class="email">hello@home.com</p>
@nickdavis
nickdavis / home-top.html
Created April 23, 2014 14:32
Home Top widget code example for Lean Kickstart theme by LeanThemes.co
<p>It’s simple.<br/>
Launch a startup<br/>with Kickstart.</p>
<p class="featured-link"><a href="#">Click here to start kickstarting</a></p>