Skip to content

Instantly share code, notes, and snippets.

@iiiBird
Last active August 29, 2015 14:16
Show Gist options
  • Save iiiBird/e928daa4517d91b8d61b to your computer and use it in GitHub Desktop.
Save iiiBird/e928daa4517d91b8d61b to your computer and use it in GitHub Desktop.
Пример страницы натяжки
<!DOCTYPE html>
<html <?php language_attributes(); ?>>
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta http-equiv="Content-type" content="text/html; charset=<?php bloginfo('charset'); ?>">
<title><?php wp_title('«', true, 'right'); ?></title>
<?php wp_head(); ?>
</head>
<body <?php body_class(); ?>> //Нужные классы в боди
<?php get_header(); ?> //взять хэдер
<?php get_footer(); ?> //взять футер
<?php get_sidebar(); ?> //Взять сайдбар
<?php the_posts_pagination(); ?> //Пагинация
<?php the_tags('<li>Теги:</li><li>','</li><li>','</li>'); ?> //Вывод тегов
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment