Skip to content

Instantly share code, notes, and snippets.

@bawright
Created March 4, 2014 23:23
Show Gist options
  • Save bawright/9357884 to your computer and use it in GitHub Desktop.
Save bawright/9357884 to your computer and use it in GitHub Desktop.
ACF Page Template
<?php
/*
Template Name: Contact
*/
//* Add custom body class of "contact" to the head
add_filter( 'body_class', 'odg_body_class' );
function odg_body_class( $classes ) {
$classes[] = 'contact';
return $classes;
}
//* Force full-width-content layout setting
add_filter( 'genesis_pre_get_option_site_layout', '__genesis_return_full_width_content' );
//* Remove Genesis Layout Settings
remove_theme_support( 'genesis-inpost-layouts' );
//* Remove the post content (requires HTML5 theme support)
remove_action( 'genesis_entry_content', 'genesis_do_post_content' );
// Add Custom Content
add_action( 'genesis_entry_content', 'odg_custom_content' );
function odg_custom_content() {
?>
<div class="intro">
<p>
<?php the_field('introduction'); ?>
</p>
</div>
<div class="one-fourth first">
<h3>Office Location</h3>
<p>
<?php the_field('address'); ?> <br>
<?php the_field('city_state_zip'); ?>
</p>
<p>
<span>Phone:</span><?php the_field('phone'); ?><br>
<span>Fax:</span><?php the_field('fax'); ?>
</p>
<p>
<a href="mailto:<?php the_field('email'); ?>"><?php the_field('email'); ?></a>
</p>
</div>
<div class="three-fourths">
<h3>Send Us a Message</h3>
<?php //* Adds Gravity Forms Field (needs plugin off GitHub)
$form = get_field('contact_form');
gravity_form_enqueue_scripts($form->id, true);
gravity_form($form->id, false, false, false, '', true, 1);
?>
</div>
<?php
}
genesis();
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment