You are on page 1of 1

<?php /* Template Name: Карта сайта*/ ?

>

<?php
$exclude_pages = '';
$exclude_posts = array();
?>

<h2>Публикации</h2>

<?php

$args = array();

$categories = get_categories( $args );

foreach ($categories as $category) {


echo "<ul>";
echo "<li><strong>Категория:</strong> <a href=\"".get_category_link($category-
>term_id)."\">".$category->name."</a>";
$posts = get_posts(array('category' => $category->term_id, 'posts_per_page'
=> '150'));
echo "<ul>";
foreach ($posts as $post) {
if(!in_array($post->ID, $exclude_posts)){
echo "<li><a href=\"".get_permalink($post->ID)."\">".$post-
>post_title."</a></li>";
}
}
echo "</ul>";
echo "</li>";
echo "</ul>";
}

?>

<?php $args = array('exclude_tree' => $exclude_pages, 'title_li' => ''); ?>

<h2>Страницы</h2>

<ul>
<?php wp_list_pages( $args ); ?>
</ul>

<p><a href="_ваш_домен_/sitemap.xml">Просмотр карты сайта в XML</a></p>

You might also like