Skip to content

Instantly share code, notes, and snippets.

@bhubbard
Created December 15, 2015 21:48
Show Gist options
  • Save bhubbard/f60520aae415b1479d9e to your computer and use it in GitHub Desktop.
Save bhubbard/f60520aae415b1479d9e to your computer and use it in GitHub Desktop.
<?php
// Always add idx tags to wrappers
add_filter ('the_content', 'idxbroker_add_idx_tags', 99);
function idxbroker_add_idx_tags($content) {
global $post;
$idxstart = '<div id="idxStart" style="display: none;"></div>';
$idxstop = '<div id="idxStop" style="display: none;"></div>';
if ( is_singular('idx-wrapper') ) {
$content = $content . $idxstart . $idxstop;
}
// Returns the content.
return $content;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment