header.php
4.0 KB
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
<?php $get_lang = isset($wp_query->query_vars['prisna_translate_seo_request'])?urldecode($wp_query->query_vars['prisna_translate_seo_request']):''; ?>
<!DOCTYPE html>
<html dir="ltr" lang="en">
<head>
<title>
<?php wp_title( ' ', true, 'right' ); ?>
</title>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<link rel="apple-touch-icon-precomposed" href="">
<meta name="format-detection" content="telephone=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<?php if ( is_singular() ) : ?>
<meta property="og:url" content="<?php echo curPageURL();?>"/>
<meta property="og:title" content="<?php wp_title(); ?>"/>
<meta property="og:description" content="<?php echo mb_strimwidth(strip_tags(apply_filters('the_content', $post->post_content)), 0, 300,"..."); ?>"/>
<meta property="og:type" content="product"/>
<?php $images = get_field('product_gallery');
if( $images ): foreach( $images as $key=>$image ):
if(!is_array($images[$key])){
$eric_id = $image;
$eric_urcs = wp_get_attachment_image_src($eric_id, $size='full');
$eric_urc = $eric_urcs[0];
$image = array(
'id' => $eric_id,
'url' => $eric_urc,
'sizes' => array('thumbnail' => $eric_urc, )
);
$images[$key] = $image;
}
if (!$image['sizes']['thumbnail']) $image['sizes']['thumbnail'] = $srcs[0]; endforeach; endif; ?>
<?php if( $images ): for($x=0;$x<1; $x++){ ?>
<meta property="og:image" content="<?php echo $images[0]['url']; ?>"/>
<?php } endif; ?>
<meta property="og:site_name" content="<?php echo home_url("/"); ?>"/>
<?php endif; ?>
<link href="<?php echo home_url("/"); ?>style/global/style.css" rel="stylesheet">
<link href="<?php echo home_url("/"); ?>style/public/public.css" rel="stylesheet">
<?php get_the_field('3code_gw'); ?>
<link rel="shortcut icon" href="<?php $image = get_get_field('ad_favicon');if( !empty($image) ): ?><?php echo $image['url']; ?><?php endif; ?>" />
<?php wp_head();?>
<?php if( is_category() ) : ?>
<meta name="description" content="<?php wp_title(); ?> Manufacturers, Factory, Suppliers From China, <?php echo do_shortcode( '[rand_suffix]' ); ?>" />
<?php elseif( is_tag() ) : ?>
<meta name="description" content="<?php wp_title(); ?> Manufacturers, Factory, Suppliers From China, <?php echo do_shortcode( '[rand_suffix]' ); ?>" />
<?php endif; ?>
</head>
<body>
<div class="container">
<header class="head-wrapper">
<div class="tasking"></div>
<section class="head-inner">
<div class="nav-bar">
<div class="layout">
<div class="logo"><a href="<?php echo home_url("/"); ?>">
<?php $image = get_get_field('ad_logo');if( !empty($image) ): ?>
<img src="<?php echo $image['url']; ?>" alt="<?php echo $image['title']; ?>">
<?php endif; ?>
</a></div>
<div class="head-left">
<ul class="gm-sep nav">
<?php
$menu=str_replace("</ul></div>", "", ereg_replace("<div[^>]*><ul[^>]*>", "", wp_nav_menu(array('menu' => 31, 'echo' => false)) ));
$menu=str_replace("http://home", home_url("/"),$menu);
$menu=str_replace("/news", "".home_url("/")."news" ,$menu);
$menu=str_replace("/video", "".home_url("/")."video" ,$menu);
echo $menu
?>
</ul>
</div>
<div class="head-right">
<div class="head-search">
<div class="head-search-form">
<form action="/index.php" method="get">
<input class="search-ipt" type="text" placeholder="search..." name="s" id="s" />
<input type="hidden" name="cat" value="490"/>
<input class="search-btn" type="submit" id="searchsubmit" value="" />
</form>
</div>
<span class="search-toggle"></span> </div>
<?php get_sidebar(language);?>
</div>
</div>
</div>
</section>
</header>