Skip to content

Instantly share code, notes, and snippets.

@neilgee
neilgee / footermenu.php
Last active October 21, 2019 19:04
Add Footer or Tertiary Menu to Genesis Child Theme
<?php
//do not add in opening php tag
/**
* Add in Footer or Tertiary Menu
*
* @package Genesis Tertiary Menu
* @author Neil Gee
* @link http://wpbeaches.com/add-footer-menu-genesis-child-theme/
* @copyright (c)2014, Neil Gee
@neilgee
neilgee / allie.html
Last active August 29, 2015 13:55
All IE Child Theme
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/all-ie.css" />
<![endif]-->
@neilgee
neilgee / allie.html
Last active August 29, 2015 13:55
All IE Parent Theme
<!--[if IE]>
<link rel="stylesheet" type="text/css" href="<?php echo get_template_directory_uri(); ?>/css/all-ie.css" />
<![endif]-->
@neilgee
neilgee / ie8.html
Last active August 29, 2015 13:55
IE 8 WordPress Child
<!--[if IE 8]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-8.css" />
<![endif]-->
@neilgee
neilgee / ie8andlower.html
Last active August 29, 2015 13:55
IE 8 and Lower
<!--[if lte IE 8]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-8andlower.css" />
<![endif]-->
@neilgee
neilgee / ie7lower.html
Last active August 29, 2015 13:55
IE 7 and lower
<!--[if lt IE 8]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-7andlower.css" />
<![endif]-->
@neilgee
neilgee / ie9higher.html
Last active August 29, 2015 13:55
IE 9 and Higher
<!--[if gte IE 9]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-9andhigher.css" />
<![endif]-->
@neilgee
neilgee / ie9.html
Last active August 29, 2015 13:55
IE 9 and Higher
<!--[if gt IE 8]>
<link rel="stylesheet" type="text/css" href="<?php echo get_stylesheet_directory_uri(); ?>/css/ie-9andhigher.css" />
<![endif]-->
@neilgee
neilgee / a-cpt.php
Last active July 27, 2022 14:05
CPT (Custom Post Type) - WordPress Plugin - there are 2 snippets here - the one name - cpt-hide.php hides the single and archive views, the other one is normal
<?php
/*
Plugin Name: Testimonials Custom Post Type
Plugin URI: http://wpbeaches.com/create-custom-post-types-in-genesis-child-theme-in-wordpress/
Description: Testimonials Custom Post Types
Author: Neil Gowran
Version:1.0.0
Author URI:http://wpbeaches.com
*/
@neilgee
neilgee / front-page.php
Last active August 29, 2016 02:52
Genesis Remove Home Page Content
<?php //<~ Add me in
add_action( 'genesis_before_content', 'ng_home_page_widgets' );
/*
* Add the home widgets in place
*/
function ng_home_page_widgets() {
genesis_widget_area ('content-1', array(