-
-
Save bhubbard/cdc46ec439e218ce06b8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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: IDX Broker | |
* | |
* This template is for displaying the IDX info from | |
* IDXBroker.com in your Genesis child theme. | |
*/ | |
add_action( 'genesis_before_content', 'wsm_idx_open_tag' ); | |
function wsm_idx_open_tag() { | |
echo '<div id="idxStart" style="display: none;"></div>'; | |
} | |
add_action( 'genesis_after_content', 'wsm_idx_close_tag' ); | |
function wsm_idx_close_tag() { | |
echo '<div id="idxStop" style="display: none;"></div>'; | |
} | |
genesis(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment