Skip to content

Instantly share code, notes, and snippets.

View jasonhobbsllc's full-sized avatar

Jason Hobbs jasonhobbsllc

View GitHub Profile
<?php
/**
* This file adds a custom template to the AgentPress Child Theme.
*
* @author Brad Dalton
* @link http://wpsites.net/web-design/make-custom-page-template/
* @package Agentpress
* @subpackage Customizations
*/
@jasonhobbsllc
jasonhobbsllc / archive-staff.php
Created June 11, 2014 12:26 — forked from robincornett/archive-staff.php
Staff archive with thumbs on left, as click on images, full bio fades in. From Robin Cornett
<?php
//* Remove the entry meta in the entry header
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 );
remove_action( 'genesis_entry_footer', 'genesis_post_meta' );
remove_action ('genesis_loop', 'genesis_do_loop'); // Remove the standard loop
add_action( 'genesis_loop', 'custom_do_loop' ); // Add custom loop
function custom_do_loop() {