Skip to content

Instantly share code, notes, and snippets.

View graphicdesignbyemily's full-sized avatar

Emily Genevish graphicdesignbyemily

View GitHub Profile
@rfmeier
rfmeier / functions.php
Last active June 14, 2017 15:10
Make the Genesis Featured Post widget title link to the specified category archives.
<?php
add_filter( 'widget_title', 'custom_widget_title', 10, 3 );
/**
* Callback for WordPress 'widget_title' filter.
*
* Create a link for the title of the Genesis Featured Widget if a category is
* specified.
*
* @package WordPress
@grtaylor2
grtaylor2 / Removing Blog Post From Home Page in Genesis
Last active May 5, 2017 07:59
Removing Blog Post From Home Page in Genesis
/** Removing Blog Post From Home Page */
remove_action( 'genesis_loop', 'genesis_do_loop' );add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
genesis();