Created
March 24, 2016 12:09
-
-
Save jchristopher/df7f7af57420ca82a932 to your computer and use it in GitHub Desktop.
SearchWP compatibility with the7
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 | |
// add this to your CHILD theme functions.php | |
function my_presscore_search_loop_post_content() { | |
global $post; | |
presscore_populate_post_config(); | |
dt_get_template_part( 'blog/masonry/blog-masonry-post' ); | |
} | |
add_action( 'presscore_search_loop_post_content', 'my_presscore_search_loop_post_content' ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment