thachpham92

File header.php của theme Wordpress

May 15th, 2013
199
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.00 KB | None | 0 0
  1. <!DOCTYPE html>
  2.  
  3. <html <?php language_attributes(); ?>>
  4.  
  5. <head>
  6.  
  7. <meta charset="<?php bloginfo('charset'); ?>" />
  8.  
  9. <!--Thiết lập title của trang chủ và post, page-->
  10.  
  11. <title><?php wp_title('|',true,'right'); ?><?php bloginfo('name'); ?></title>
  12.  
  13. <link rel="profile" href="http://gmpg.org/xgn/11" />
  14.  
  15. <!--Chèn CSS và JS cần thiết-->
  16.  
  17. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('stylesheet_url'); ?>" />
  18.  
  19. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory');?>/style/960.css" />
  20.  
  21. <link rel="stylesheet" type="text/css" media="all" href="<?php bloginfo('template_directory');?>/style/text.css" />
  22.  
  23. <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>">
  24.  
  25. <!--Kích hoạt comment đa tầng trong theme-->
  26.  
  27. <?php
  28. /*
  29. Enabled threaded comment
  30. */
  31. if (is_singular() && get_option( 'thread_comment' ))
  32. wp_enqueue_script( 'comment_reply' );
  33. wp_head();
  34. ?>
  35.  
  36. </head> <!--End <head>-->
Advertisement
Add Comment
Please, Sign In to add comment