Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. <!-- <?php print date('Y-m-d H:i:s') ?> <?php print date_default_timezone_get() ?> -->
  2. <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
  3. <meta name="viewport" content="width=device-width, initial-scale=1">
  4. <link rel="apple-touch-icon-precomposed" sizes="57x57" href="/apple-touch-icon-57x57.png" />
  5. <link rel="apple-touch-icon-precomposed" sizes="114x114" href="/apple-touch-icon-114x114.png" />
  6. <link rel="apple-touch-icon-precomposed" sizes="72x72" href="/apple-touch-icon-72x72.png" />
  7. <link rel="apple-touch-icon-precomposed" sizes="144x144" href="/apple-touch-icon-144x144.png" />
  8. <link rel="apple-touch-icon-precomposed" sizes="60x60" href="/apple-touch-icon-60x60.png" />
  9. <link rel="apple-touch-icon-precomposed" sizes="120x120" href="/apple-touch-icon-120x120.png" />
  10. <link rel="apple-touch-icon-precomposed" sizes="76x76" href="/apple-touch-icon-76x76.png" />
  11. <link rel="apple-touch-icon-precomposed" sizes="152x152" href="/apple-touch-icon-152x152.png" />
  12. <link rel="icon" type="image/png" href="/favicon-196x196.png" sizes="196x196" />
  13. <link rel="icon" type="image/png" href="/favicon-96x96.png" sizes="96x96" />
  14. <link rel="icon" type="image/png" href="/favicon-32x32.png" sizes="32x32" />
  15. <link rel="icon" type="image/png" href="/favicon-16x16.png" sizes="16x16" />
  16. <link rel="icon" type="image/png" href="/favicon-128.png" sizes="128x128" />
  17. <meta name="application-name" content="<?php bloginfo('name') ?>"/>
  18. <meta name="msapplication-TileColor" content="#FFFFFF" />
  19. <meta name="msapplication-TileImage" content="/mstile-144x144.png" />
  20. <meta name="msapplication-square70x70logo" content="/mstile-70x70.png" />
  21. <meta name="msapplication-square150x150logo" content="/mstile-150x150.png" />
  22. <meta name="msapplication-wide310x150logo" content="/mstile-310x150.png" />
  23. <meta name="msapplication-square310x310logo" content="/mstile-310x310.png" />
  24. <?php if (false && is_single()) { ?>
  25. <?php while (have_posts()): the_post(); ?>
  26. <meta property="og:locale" content="fr_FR">
  27. <meta property="og:type" content="website">
  28. <meta property="og:title" content="<?php the_title(); ?>">
  29. <meta property="og:description" content="<?php echo strip_tags(get_the_excerpt()); ?>">
  30. <meta property="og:url" content="<?php bloginfo('url'); ?>">
  31. <meta property="og:image" content="<?php the_post_thumbnail_url(); ?>">
  32. <meta name="twitter:card" content="summary">
  33. <meta name="twitter:description" content="<?php echo strip_tags(get_the_excerpt()); ?>">
  34. <meta name="twitter:title" content="<?php the_title(); ?>">
  35. <meta name="twitter:image" content="<?php the_post_thumbnail_url(); ?>">
  36. <?php endwhile; ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement