-
Notifications
You must be signed in to change notification settings - Fork 521
/
index.php
67 lines (60 loc) · 1.75 KB
/
index.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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<?php
/*
* @Author: iowen
* @Author URI: https://www.iowen.cn/
* @Date: 2024-07-30 17:15:18
* @LastEditors: iowen
* @LastEditTime: 2024-07-30 22:18:04
* @FilePath: /WebStack/index.php
* @Description:
*/
if ( ! defined( 'ABSPATH' ) ) { exit; }
get_header();
include( 'templates/header-nav.php' );
?>
<div class="main-content">
<?php include( 'templates/header-banner.php' ); ?>
<?php get_template_part( 'templates/bulletin' ); ?>
<?php
if(io_get_option('is_search')){include('search-tool.php'); }
else{?>
<div class="no-search"></div>
<?php
}
?>
<div class="sites-list" style="margin-bottom: 8.5rem;">
<?php if(!wp_is_mobile() && io_get_option('ad_home_s')) echo '<div class="row"><div class="ad ad-home col-md-6">' . stripslashes( io_get_option('ad_home') ) . '</div><div class="ad ad-home col-md-6 visible-md-block visible-lg-block">' . stripslashes( io_get_option('ad_home') ) . '</div></div>'; ?>
<?php
foreach($categories as $category) {
$__visible = io_is_visible(get_term_meta($category->term_id, '_view_user', true));
if ($__visible === 0) {
continue;
}
if($category->category_parent == 0){
$children = get_categories(array(
'taxonomy' => 'favorites',
'meta_key' => '_term_order',
'orderby' => 'meta_value_num',
'order' => 'desc',
'child_of' => $category->term_id,
'hide_empty' => 0
)
);
if(empty($children)){
fav_con($category, $__visible);
}else{
foreach($children as $mid) {
$__visible = io_is_visible(get_term_meta($mid->term_id, '_view_user', true));
if ($__visible === 0) {
continue;
}
fav_con($mid, $__visible);
}
}
}
}
get_template_part( 'templates/friendlink' );
?>
</div>
<?php
get_footer();