forked from rtCamp/rtpanel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsearch.php
executable file
·45 lines (37 loc) · 2.1 KB
/
search.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
<?php
/**
* The template for displaying Google Custom Search or WordPress Default Search
*
* @package rtPanel
*
* @since rtPanel 2.0
*/
get_header(); ?>
<?php global $rtp_general; ?>
<section id="content" role="main" class="rtp-multiple-post<?php echo ( $rtp_general['search_code'] && $rtp_general['search_layout'] ) ? ' rtp-grid-12' : ' rtp-grid-8'; ?>"><!-- content begins --><?php
rtp_hook_begin_content();
if ( $rtp_general['search_code'] ) {
$version = NULL;
/* Check which version of Google Search Element Code is being used */
if ( preg_match( '/customSearchControl.draw\(\'cse\'(.*)\)\;/i', $rtp_general['search_code'], $split_code ) ) {
$version = 1; // Google Search Element V1 code
} elseif ( preg_match('/\<gcse:(searchresults-only|searchresults|search).*\>\<\/gcse:(searchresults-only|searchresults|search)\>/i', $rtp_general['search_code'] ) ) {
$version = 2; // Google Search Element V2 code
} ?>
<h1 class="post-title rtp-main-title"><?php printf( __( 'Search Results for: %s', 'rtPanel' ), '<span>' . get_search_query() . '</span>' ); ?></h1><?php
if ( 1 == $version ) {
$search_code = preg_split('/customSearchControl.draw\(\'cse\'(.*)\)\;/i', $rtp_general['search_code']);
echo $search_code[0];
echo $split_code[0];
echo "customSearchControl.execute('" . get_search_query() . "');";
echo $search_code[1];
} elseif ( 2 == $version ) {
echo preg_replace('/\<gcse:(searchresults-only|searchresults|search)(.*)\>\<\/gcse:(searchresults-only|searchresults|search)\>/i', '<gcse:$1 queryParameterName="s"$2></gcse:$3>', $rtp_general['search_code'] );
}
} else {
get_template_part( 'loop', 'common' );
} ?>
<?php rtp_hook_end_content(); ?>
</section><!-- #content -->
<?php if ( !$rtp_general['search_code'] || !$rtp_general['search_layout'] ) rtp_hook_sidebar(); ?>
<?php get_footer(); ?>