在 wordpress 存档下拉列表中显示嵌套月份中的帖子和计数器
Posted
技术标签:
【中文标题】在 wordpress 存档下拉列表中显示嵌套月份中的帖子和计数器【英文标题】:Showing post and counter in a nesting months under years in a wordpress archive dropdown list 【发布时间】:2014-10-21 08:09:56 【问题描述】:我发现这个脚本在 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>
【问题讨论】:
这确实是一个有趣但也是一个巨大的问题。我的想法是使用单个WP_Query
一次性获取所有帖子,然后获取$posts
帖子数组,将其重新排列为以年和月为键的多维数组。然后可以使用这个重新排序的数组来显示您的列表
我认为get_posts
可能是更好的选择。
【参考方案1】:
正如 Pieter Goosen 所建议的那样,多维数组将是正确的选择。
它应该是这样的。
function get_posts_archive_order_date()
global $wpdb;
$results = $wpdb->get_results("SELECT ID, post_date, post_title FROM $wpdb->prefixposts 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
【讨论】:
你应该使用get_posts
。根据编码标准,不应使用自定义 SQL 查询。我没有测试你的代码,但是 +1 用于采纳我的想法并运行它,这正是我的想法:-)
太棒了@Shibi!奇迹般有效。现在我的问题是关于这 2 个帖子的年份和月份的计数器。我查看了 $archiveArr 因为它存储了所有条目并且可能在其上设置了一个计数器。但是我发现很难实施,或者以其他方式在年月日下的 foreach 循环上放置一个计数器。 ——扬·班托利奈
我编辑代码,添加年月计数器。以上是关于在 wordpress 存档下拉列表中显示嵌套月份中的帖子和计数器的主要内容,如果未能解决你的问题,请参考以下文章