Last active
August 29, 2015 14:04
-
-
Save kostyakoz/8335f480247c9d94ce61 to your computer and use it in GitHub Desktop.
Меню в Anchor
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!-- Меню в Anchor --> | |
<?php if(has_menu_items()): /*проверяет, если пункты меню*/ ?> | |
<ul> | |
<?php while(menu_items()): /*выводит один пункт меню (ссылку)*/ ?> | |
<li <?php echo (menu_active() ? 'class="active"' : ''); /*если ссылка активна, добавляется class="active"*/ ?>> | |
<a href="<?php echo menu_url(); /*url адрес*/ ?>" title="<?php echo menu_title(); /*заголовок*/ ?>"> | |
<?php echo menu_name(); /*название*/ ?> | |
</a> | |
</li> | |
<?php endwhile; /*конец пункта (ссылки)*/ ?> | |
</ul> | |
<?php endif; /*конец меню*/ ?> |
Author
kostyakoz
commented
Aug 4, 2014
<?php theme_include('header'); ?>
<!-- Если есть записи, то выводим их -->
<?php if(has_posts()): ?>
<!-- Выводим запись -->
<?php while(posts()): ?>
<article class="news">
<div class="newsImage">
<img src="<?php echo article_custom_field('preview_img', 'default.png'); ?>" alt="" />
</div>
<div class="newsContent">
<h2><a href="<?php echo article_url(); ?>"><strong class="game"><img src="<?php echo article_custom_field('preview_16x', 'default_16x.png'); ?>" alt="" /></strong> <?php echo article_title(); ?></a></h2>
<div class="newsInfo">Дата: <?php echo date('j.m.Y в H:i', article_time()); ?> | Автор: <?php echo article_author(); ?></div>
<div class="newsText"><?php echo article_description(); ?></div>
<div class="fullLink"><p><?php echo total_comments() . pluralise(total_comments(), ' комментариев'); ?></p> <p><a href="<?php echo article_url(); ?>">Читать далее...</a></p></div>
</div></article>
<?php endwhile; ?>
<?php if(has_pagination()): ?>
<!-- Пагинатор -->
<?php echo posts_prev(); ?>
<?php echo posts_next(); ?>
<?php endif; ?>
<?php else: ?>
<!-- Если ничего нет -->
<p>Как будто чего-то не хватает.</p>
<?php endif; ?>
<?php theme_include('footer'); ?>
<?php theme_include('header'); ?>
<div class="main_l">
<article class="news">
<div class="newsImage"><img src="<?php echo article_custom_field('preview_img', 'default.png'); ?>" alt="" /></div>
<div class="newsContent">
<h2><a href="#"><strong class="game"><img src="<?php echo article_custom_field('preview_16x', 'default_16x.png'); ?>" alt="" /></strong> <?php echo article_title(); ?></a></h2>
<div class="newsInfo">Дата: <?php echo date('j.m.Y в H:i', article_time()); ?> | Автор: <?php echo article_author(); ?></div>
<div class="newsText"><?php echo article_markdown(); ?></div>
</div>
<br>
<article class="comments">
<!-- Здесь можно вставить код DiSQUS -->
</article>
</article>
</div>
<?php theme_include('footer'); ?>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment