View candidate-import.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
function candidate_import($continuation, $event_id, $event_name, $token){ | |
$log; | |
$log .= 'Event: '.$event_name.'<br />'; | |
//check if API call should be paginated and if so get the continuation key | |
if(empty($continuation)){ | |
//first page call |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//* Add menu item to header-right menu | |
add_filter( 'wp_nav_menu_items', 'custom_nav_item', 10, 2 ); | |
function custom_nav_item( $menu, $args ) { | |
//* make sure we are in the primary menu | |
if ( 'ana-menu' !== $args->menu ) { | |
return $menu; | |
} | |
//* see if a nav extra was already specified with Theme options | |
if ( genesis_get_option( 'nav_extras' ) ) { | |
return $menu; |
View single.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
// This file handles single entries, but only exists for the sake of child theme forward compatibility. | |
remove_action( 'genesis_entry_header', 'genesis_entry_header_markup_close', 15 ); | |
add_action( 'genesis_entry_header', 'genesis_entry_header_markup_close', 12 ); | |
remove_action( 'genesis_entry_header', 'genesis_post_info', 12 ); | |
add_action( 'genesis_entry_header', 'genesis_post_info', 3 ); |
View single-images.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
$images = get_post_meta( get_the_ID(), 'images', true ); | |
if ( $images ) { | |
for( $i = 0; $i < $images; $i++ ) { | |
$image_name = get_post_meta( get_the_ID(), 'images_' . $i . '_image_name', true ); | |
$image_path = get_post_meta( get_the_ID(), 'images_' . $i . '_image_path', true ); |
View functions.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* | |
* Infinite Scroll | |
* | |
* @since 1.0.0 | |
* | |
* @author Lauren Gray | |
* @author Bill Erickson |
View residential-portfolio.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Template Name: Residential Portfolio | |
* | |
*/ | |
remove_action ('genesis_loop', 'genesis_do_loop'); // Remove the standard loop | |
add_action( 'genesis_loop', 'custom_do_press_loop' ); // Add custom loop | |
function custom_do_press_loop() { |
View click-to-load.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Javascript for Load More | |
* | |
*/ | |
function be_load_more_js() { | |
global $wp_query; | |
$args = array( |
View page_featured_blog.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Template Name: Featured Blog with excerpts */ | |
/** | |
* Excerpt Length | |
* | |
*/ | |
function be_custom_excerpt_length( $length ) { | |
return 50; |
View gist:a045230e5f926e29b3e1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
add_action( 'pre_get_posts', 'test_per_dic' ); | |
/** | |
* Exclude Category from Blog | |
* | |
* @author Bill Erickson | |
* @link http://www.billerickson.net/customize-the-wordpress-query/ | |
* @param object $query data | |
* | |
*/ | |
function test_per_dic( $query ) { |
View template-fells.php
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* Template Name: Fells */ | |
/** | |
* My Custom Loop | |
* | |
*/ | |
function be_custom_loop() { | |
$tags = wp_get_post_tags( get_the_ID() ); |
NewerOlder