0

我编辑了标准的 wordpress 日历以根据类别突出显示日期的颜色,日历功能使用get_day_link()它加载当天的所有帖子,但是我想将其限制为特定类别。这是使days可点击链接的代码,这是对general-template.php文件的编辑,功能是get_calendar()

    if  ( in_array($day, $daywithevent) && in_array($day, $daywithtraining) ) // are there both events AND training happening today?
            $calendar_output .= '<td class="training-events-calendar"><a  href="' . get_day_link( $thisyear, $thismonth, $day ) . '" title="' . esc_attr( $ak_titles_for_day[ $day ] ) . "\">$day</a>";
    elseif ( in_array($day, $daywithtraining ) ) // how about just training?
            $calendar_output .= '<td class="training-calendar"><a  href="' . get_day_link( $thisyear, $thismonth, $day ) . "\">$day</a>";
    elseif ( in_array($day, $daywithevent)  ) //how about just events?
            $calendar_output .= '<td class="event-calendar"><a  href="' . get_day_link( $thisyear, $thismonth, $day ) . "\">$day</a>";
    else
        $calendar_output .= '<td>'.$day;
    $calendar_output .= '</td>';

有什么我可以添加到网址的吗?喜欢查询以使这 3 个链接类别具体化吗?好像没有什么要补充的get_day_link 谢谢

4

1 回答 1

3

我没有检查你在做什么,但你可以做的一件事是创建一个与你的类别相同的 date.php 文件并运行一个循环

<?php
$query = new WP_Query(array('post_type' => 'post','category__in' => array( 2, 6 ), 'year'=>get_the_date('Y'),'monthnum'=>get_the_date('m'),'day'=>  get_the_date('d')));

 if ($query->have_posts() ) : while ($query->have_posts() ) : $query->the_post();
?>
post details goes here

<?php endwhile; endif; wp_reset_query();?>
于 2013-02-01T12:06:32.513 回答