salut tout le monde
voila je sui entrain de réaliser un site web et je suis débutante
bon je travaille avec wordpress sous linux et j'utilise le theme parkcollege
et pour la recherche dans un site web voila le script que j'ai


Code : Sélectionner tout - Visualiser dans une fenêtre à part
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
<?php
 
	// Display Header
	get_header();
 
	// Get Theme Options
	global $data;
 
	// Get Post ID
	global $wp_query;$post_id = $wp_query->post->ID;
 
	// Get Header Image
	$header_image = page_header(get_post_meta($post_id, 'qns_page_header_image_url', true));
 
	// Get Content ID/Class
	$content_id_class = content_id_class(get_post_meta($post_id, 'qns_page_sidebar', true));
 
	// Reset Query
	wp_reset_query();
 
?>
 
<!-- BEGIN .page-header -->
<div class="page-header clearfix" <?php echo $header_image;	?>>
 
	<div class="page-header-inner clearfix">	
		<div class="page-title">	
			<h2><?php _e('Search Results','qns'); ?></h2>
			<div class="page-title-block"></div>
		</div>
		<?php dimox_breadcrumbs(); ?>
	</div>
 
<!-- END .page-header -->
</div>
 
<!-- BEGIN .content-wrapper -->
<div class="content-wrapper page-content-wrapper clearfix">
 
	<!-- BEGIN .main-content -->
	<div <?php echo $content_id_class; ?>>
 
		<!-- BEGIN .inner-content-wrapper -->
		<div class="inner-content-wrapper">
 
			<?php // Begin Course Search
			if ($_GET['keyword-type'] != '') {
 
				$keyword_type = stripslashes($_GET['keyword-type']);
				$keyword = stripslashes($_GET['s']);
 
				if( $keyword_type == 'course_id' ) {
					$keyword_type = 'qns_course_id';
				} 
 
				elseif( $keyword_type == 'course_name' ) {
					$keyword_type = 'qns_course_name';
				} 
 
				elseif( $keyword_type == 'program_type' ) {
					$keyword_type = 'qns_program_type';
				} 
 
				elseif( $keyword_type == 'course_length' ) {
					$keyword_type = 'qns_course_length';
				} 
 
				else {
					$keyword_type = 'qns_course_name';
				}
 
				if( $data['items_per_page'] ) { 
					$course_perpage = $data['items_per_page'];
				}
 
				else {
					$course_perpage = '10';
				}
 
				$paged = (get_query_var('paged')) ? get_query_var('paged') : 1;	
 
				$args = array(
					'post_type' => 'course',
					'meta_query' => array(
						array(
							'key' => $keyword_type,
							'value' => $keyword,
							'compare' => 'LIKE'
						)
					)
				);
 
				$course_posts = new WP_Query($args);
 
				if($course_posts->have_posts()) : ?>
 
				<table style="width:100%;">
					<thead>
						<tr>
							<th><?php _e('ID','qns'); ?></th>
							<th><?php _e('Course Name','qns'); ?></th>
							<th><?php _e('Program','qns'); ?></th>
							<th><?php _e('Length','qns'); ?></th>
						</tr>
					</thead>
					<tbody>
 
					<?php while($course_posts->have_posts()) : 
						$course_posts->the_post(); ?>
 
						<?php // Get course name
						$course_name = get_post_meta($post->ID, $prefix.'course_name', true);
						if ( $course_name == '' ) { $course_name = __('N/A','qns'); }
 
						// Get course ID
						$course_id = get_post_meta($post->ID, $prefix.'course_id', true);
						if ( $course_id == '' ) { $course_id = 'N/A'; }
 
						// Get program type
						$program_type = get_post_meta($post->ID, $prefix.'program_type', true);
						if ( $program_type == '' ) { $program_type = 'N/A'; }
 
						// Get course length
						$course_length = get_post_meta($post->ID, $prefix.'course_length', true);
						if ( $course_length == '' ) { $course_length = 'N/A'; } ?>
 
							<tr>
								<td data-title="<?php _e('ID','qns'); ?>"><?php echo $course_id; ?></td>
								<td data-title="<?php _e('Course Name','qns'); ?>"><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php echo $course_name; ?></a></td>
								<td data-title="<?php _e('Program','qns'); ?>"><?php echo $program_type; ?></td>
								<td data-title="<?php _e('Length','qns'); ?>"><?php echo $course_length; ?></td>
							</tr>
 
				<?php endwhile;?>
 
					</tbody>
				</table>
 
				<?php else : ?>
					<p><?php _e('No courses have been added yet!','qns'); ?></p>
				<?php endif; ?>
 
			<?php load_template( get_template_directory() . '/includes/pagination.php' ); ?>
 
			<?php 
			// End Course Search
			} else {
			?>
 
			<?php if (have_posts()) : ?>
 
				<div class="title1 clearfix">
					<h4><?php _e('Pages','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
 
				<?php 
					// Return Post Items
					$i = 0;
					while (have_posts()) : the_post(); 
 
						if( get_post_type() !== 'post' and get_post_type() !== 'teacher' and get_post_type() !== 'event' and get_post_type() !== 'course' ) { 
							$i++; ?>
 
							<li><strong><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></strong><br /> <?php print_excerpt(100); ?></li>
 
						<?php }
 
					endwhile;?>
 
					<?php if( $i == 0 ) { ?><li><?php _e( 'No results were found.', 'qns' ); ?></li><?php } ?>
 
				<!--END .search-results-list -->
				</ol>
 
				<hr class="space1">
 
				<div class="title1 clearfix">
					<h4><?php _e('Blog','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
 
				<?php 
					// Return Post Items
					$i = 0;
					while (have_posts()) : the_post(); 
 
						if( get_post_type() == 'post' ) { 
							$i++; ?>
 
							<li><strong><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></strong><br /> <?php print_excerpt(250); ?></li>
 
						<?php }
 
					endwhile;?>
 
					<?php if( $i == 0 ) { ?><li><?php _e( 'No results were found.', 'qns' ); ?></li><?php } ?>
 
				<!--END .search-results-list -->
				</ol>
 
				<hr class="space1">
 
				<div class="title1 clearfix">
					<h4><?php _e('Events','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
 
				<?php 
					// Return Event Items
					$i = 0;
					while (have_posts()) : the_post();
 
						if( get_post_type() == 'event' ) {
							$i++; ?>
 
		                    <li><strong><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></strong><br /> <?php print_excerpt(250); ?></li>
 
						<?php }
 
			 		endwhile;?>
 
					<?php if( $i == 0 ) { ?><li><?php _e( 'No results were found.', 'qns' ); ?></li><?php } ?>
 
				<!--END .search-results-list -->
				</ol>
 
				<hr class="space1">
 
				<div class="title1 clearfix">
					<h4><?php _e('Teachers','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
 
				<?php 
					// Return Event Items
					$i = 0;
					while (have_posts()) : the_post();
 
						if( get_post_type() == 'teacher' ) {
							$i++; ?>
 
		                    <li><strong><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></strong><br /> <?php print_excerpt(250); ?></li>
 
						<?php }
 
			 		endwhile;?>
 
					<?php if( $i == 0 ) { ?><li><?php _e( 'No results were found.', 'qns' ); ?></li><?php } ?>
 
				<!--END .search-results-list -->
				</ol>
 
				<hr class="space1">
 
				<div class="title1 clearfix">
					<h4><?php _e('Courses','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
 
				<?php 
					// Return Event Items
					$i = 0;
					while (have_posts()) : the_post();
 
						if( get_post_type() == 'course' ) {
							$i++; ?>
 
		                    <li><strong><a href="<?php the_permalink(); ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"><?php the_title(); ?></a></strong><br /> <?php print_excerpt(250); ?></li>
 
						<?php }
 
			 		endwhile;?>
 
					<?php if( $i == 0 ) { ?><li><?php _e( 'No results were found.', 'qns' ); ?></li><?php } ?>
 
				<!--END .search-results-list -->
				</ol>
 
				<?php // Include Pagination feature
				load_template( get_template_directory() . '/includes/pagination.php' );
				?>
 
			<?php else : ?>
 
				<div class="title1 clearfix">
					<h4><?php _e('Pages','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
					<li><?php _e( 'No results were found.', 'qns' ); ?></li>
				</ol>
 
				<hr class="space1">
 
				<div class="title1 clearfix">
					<h4><?php _e('Blog','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
					<li><?php _e( 'No results were found.', 'qns' ); ?></li>
				</ol>
 
				<hr class="space1">
 
				<div class="title1 clearfix">
					<h4><?php _e('Events','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
					<li><?php _e( 'No results were found.', 'qns' ); ?></li>
				</ol>
 
				<hr class="space1">
 
				<div class="title1 clearfix">
					<h4><?php _e('Teachers','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
					<li><?php _e( 'No results were found.', 'qns' ); ?></li>
				</ol>
 
				<hr class="space1">
 
				<div class="title1 clearfix">
					<h4><?php _e('Courses','qns') ?></h4>
					<div class="title-block"></div>
				</div>
 
				<!--BEGIN .search-results-list -->
				<ol class="search-results-list">
					<li><?php _e( 'No results were found.', 'qns' ); ?></li>
				</ol>
 
			<?php endif; ?>
 
			<?php 
			// End course search else
			} ?>
 
		<!-- END .inner-content-wrapper -->
		</div>
 
	<!-- END .main-content -->
	</div>
 
	<?php get_sidebar(); ?>
 
<!-- END .content-wrapper -->
</div>
 
<?php get_footer(); ?>
le probleme que j'ai c'est que quand j'éffectue la recherche
le résultat sera une recherche sur : pages Blog, teachers, events, courses
hors moi je veux éffectue juste une recherche sur les pages
esst ce qu'il yaz quelqu'un qui peux m'aidé .?
merci d'avance.
A Bientot.