Skip to content

Instantly share code, notes, and snippets.

@kostyakoz
Last active August 29, 2015 14:04
Show Gist options
  • Save kostyakoz/8335f480247c9d94ce61 to your computer and use it in GitHub Desktop.
Save kostyakoz/8335f480247c9d94ce61 to your computer and use it in GitHub Desktop.
Меню в Anchor
<!-- Меню в 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; /*конец меню*/ ?>
@kostyakoz
Copy link
Author

<?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