Отображение записи и счетчика во вложенных месяцах и годах в выпадающем списке архива WordPress

Я нашел этот скрипт, вложив месяцы под годами в выпадающий список архива WordPress.

<div class="blog-list-archive">

<?php
/**/
$years = $wpdb->get_col("SELECT DISTINCT YEAR(post_date)
FROM $wpdb->posts WHERE post_status = 'publish'
AND post_type = 'post' ORDER BY post_date DESC");
foreach($years as $year) :
?>
<li><a href="JavaScript:void()"><?php echo $year; ?></a>

<ul class="archive-sub-menu">
<?    $months = $wpdb->get_col("SELECT DISTINCT MONTH(post_date)
FROM $wpdb->posts WHERE post_status = 'publish' AND post_type = 'post'
AND YEAR(post_date) = '".$year."' ORDER BY post_date DESC");
foreach($months as $month) :
?>
<li><a href="<?php echo get_month_link($year, $month); ?>">

<?php echo date( 'F', mktime(0, 0, 0, $month) );?></a>

</li>

<?php endforeach;?>

</ul>

The output is this :
2014
January
October
2013
January

Сценарий ограничен и не отображает пост в этом месяце. Я пытался добавить это, но не повезло, я не кодировал целую вечность и не могу найти решение. Кроме показа постов, я хотел добавить счетчик постов за год (показывает общее количество постов за этот год) и за месяц (показывает общее количество постов за этот месяц)


Скрипт jquery для отображения выпадающего списка

<script type="text/javascript">

jQuery(document).ready(function() {

jQuery('.blog-list-archive li ul').hide();
jQuery('.blog-list-archive li a').click(function(){
jQuery(this).parent().addClass('selected');
jQuery(this).parent().children('ul').slideDown(250);
jQuery(this).parent().siblings().children('ul').slideUp(250);
jQuery(this).parent().siblings().removeClass('selected');
});
});

</script>

0

Решение

Как предположил Питер Гусен, многомерный массив будет правильным выбором.

Это должно выглядеть так.

function get_posts_archive_order_date() {
global $wpdb;
$results = $wpdb->get_results("SELECT ID, post_date, post_title FROM {$wpdb->prefix}posts WHERE post_type = 'post' AND post_status = 'publish' ORDER BY post_date DESC");

$archiveArr = array();
foreach($results as $result) {
$year = date('Y', strtotime($result->post_date)); // get post year
$month = date('m', strtotime($result->post_date)); // get post month
$archiveArr[$year][$month][$result->ID] = $result; // set the array
}foreach($archiveArr as $year=>$months) {
$total_year = 0;
foreach($months as $month=>$posts) {
$total_year = $total_year + count($posts); // set the total posts for this year
}
?>
<li><a href="JavaScript:void()"><?php echo $year; ?></a><?php echo $total_year; // print total posts for this year ?>
<ul class="archive-sub-menu">
<?php foreach($months as $month=>$posts) { ?>
<?php $total_month = count($posts); //total posts in this month ?>
<li><a href="<?php echo get_month_link($year, $month); ?>">
<?php echo date( 'F', mktime(0, 0, 0, $month) ); ?></a> <?php echo $total_month; // print total posts for this month ?>
<ul class="archive-sub-menu-posts">
<?php foreach($posts as $post) { ?>
<li>
<a href="<?php echo get_permalink($post->ID); ?>"><?php echo $post->post_title; ?></a>
</li>
<?php } ?>
</ul>
</li>
<?php } ?>
</ul>
</li>
<?php
}
}

get_posts_archive_order_date() // run the function
1

Другие решения

Других решений пока нет …

По вопросам рекламы [email protected]