-
Notifications
You must be signed in to change notification settings - Fork 0
/
search.php
43 lines (28 loc) · 940 Bytes
/
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
<?php
namespace mikuclub;
get_header();
$search_value = sanitize_text_field(get_query_var('s'));
$search_form = post_list_header_search_form();
$breadcrumbs = print_breadcrumbs_component();
$post_list_header_category = print_post_list_header_category();
// $post_list_header_order = print_post_list_header_order();
$post_list_header_order = '';
$post_list_header_download_type = print_post_list_header_download_type();
$post_list_header_user_black_list = print_post_list_header_user_black_list();
$post_list_component = print_post_list_component();
$output = <<<HTML
{$breadcrumbs}
<div class="my-4 w-md-50 mx-auto">
{$search_form}
</div>
<div class="my-2 border-bottom">
{$post_list_header_category}
</div>
{$post_list_header_order}
{$post_list_header_download_type}
{$post_list_header_user_black_list}
{$post_list_component}
HTML;
echo $output;
//get_sidebar();
get_footer();