View difference between Paste ID: AErXTbtP and sPhwfk2M
SHOW: | | - or go back to the newest paste.
1
<!DOCTYPE html>
2-
 
2+
3
<head>
4-
 
4+
5
<title>
6-
 
6+
 <?php wp_title('|',true,'right'); ?>
7
 <?php bloginfo('name'); ?>
8-
 
8+
 </title>
9-
<!--Thiết lập title của trang chủ và post, page-->
9+
10-
 
10+
<!--Chèn CSS và JS cần thiết vào theme-->
11-
<title><?php wp_title('|',true,'right'); ?><?php bloginfo('name'); ?></title>
11+
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo( 'stylesheet_url' ); ?>">
12-
 
12+
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory');?>/style/960.css" />
13
<link rel="stylesheet" type="text/css" href="<?php bloginfo('template_directory');?>/style/text.css" />
14-
 
14+
15-
<!--Chèn CSS và JS cần thiết-->
15+
<!--Kích hoạt comment đa tầng - bắt buộc-->
16-
 
16+
17-
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" />
17+
	/*
18-
 
18+
	Enabled threaded comment
19-
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory');?>/style/960.css" />
19+
	 */
20-
 
20+
	if (is_singular() && get_option( 'thread_comment' ))
21-
<link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory');?>/style/text.css" />
21+
		wp_enqueue_script( 'comment_reply' );
22-
 
22+
	wp_head();
23
?>
24-
 
24+
</head>
25-
<!--Kích hoạt comment đa tầng trong theme-->
25+
<body>
26-
 
26+
<div id="wrapper-wrapper" class="container_12">
27
	<div id="header" class="grid_4">
28-
 /*
28+
		<h1><a href="<?php echo get_option('home');?>"><?php bloginfo('name'); ?></a></h1>
29-
 Enabled threaded comment
29+
	</div>
30-
 */
30+
	<div id="top-menu" class="grid_8">
31-
 if (is_singular() && get_option( 'thread_comment' ))
31+
		<?php wp_nav_menu( array(
32-
 wp_enqueue_script( 'comment_reply' );
32+
			'theme_location'  => 'top-menu') );
33-
 wp_head();
33+
		?>
34
	</div>
35-
 
35+
</div>