-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.php
More file actions
36 lines (34 loc) · 2.13 KB
/
header.php
File metadata and controls
36 lines (34 loc) · 2.13 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
<?php
header("Expires: Mon, 26 Jul 1997 05:00:00 GMT");
header("Cache-Control: no-cache, must-revalidate");
header("Pragma: no-cache");
session_start();
require 'saetv2.ex.class.php';
?>
<html <?php language_attributes(); ?>>
<head>
<meta charset="<?php bloginfo( 'charset' ); ?>" />
<meta name="viewport" content="width=device-width,initial-scale=0.6">
<meta http-equiv="Content-Security-Policy" content="upgrade-insecure-requests"/>
<!-- 加载js库 -->
<script src="https://cdn.bootcdn.net/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/jqueryui/1.9.2/jquery-ui.min.js"></script>
<script src="https://cdn.bootcdn.net/ajax/libs/font-awesome/5.15.3/js/all.min.js"></script>
<!-- require MetingJS -->
<script src="https://cdn.jsdelivr.net/npm/meting@2/dist/Meting.min.js"></script>
<!-- require APlayer -->
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.css">
<script src="https://cdn.jsdelivr.net/npm/aplayer/dist/APlayer.min.js"></script>
<!-- 加载主题使用js -->
<script src="<?php echo esc_url(get_template_directory_uri()); ?>/js/blackHackFunction.js"></script>
<!-- 加载css -->
<link rel="stylesheet" href="<?php echo esc_url( get_template_directory_uri() ); ?>/css/style.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="<?php echo esc_url( get_template_directory_uri() ); ?>/css/mobile.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="<?php echo esc_url( get_template_directory_uri() ); ?>/css/ajax.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="<?php echo esc_url( get_template_directory_uri() ); ?>/css/weibo.css" type="text/css" media="screen"/>
<link rel="stylesheet" href="<?php echo esc_url( get_template_directory_uri() ); ?>/css/LWA_plugin_style.css" type="text/css" media="screen"/>
<!-- 更新APlayer CSS-->
<link rel="stylesheet" href="<?php echo esc_url( get_template_directory_uri() ); ?>/css/aplayer.css" type="text/css" media="screen"/>
<?php wp_head(); ?>
</head>
<!-- page wrap -->