Created
June 16, 2017 08:43
-
-
Save barrykooij/06f271af64303c15f3664e995cee0fdc 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 | |
function dlm_pa_search_prior_results() { | |
if ( ! empty( $_GET['download_search'] ) ) { | |
// template handler | |
$template_handler = new DLM_Template_Handler(); | |
//show search box | |
$template_handler->get_template_part( 'search-downloads', '', plugin_dir_path( DLM_PA_FILE ) . 'templates/' ); | |
} | |
} | |
add_action( "dlm_page_addon_before_download_page", "dlm_pa_search_prior_results" ); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment