提问人:COBNETCKNN 提问时间:11/13/2019 最后编辑:JainilCOBNETCKNN 更新时间:11/13/2019 访问量:67
自定义字段和事件
Custom Fields and Events
问:
我在 WordPress 主题中设置动态日期时遇到了问题。我安装了插件来为我的活动帖子制作自定义字段,我在帖子之外制作了单独的部分,并在 .Advanced Custom Fields
wp-admin
我为我的日期添加了一个新的自定义字段,并在我之前已经创建的事件上手动添加了日期,为了使其动态化,我编辑了主题中的代码,但日期只是不想根据我设置的那些日期进行更改。‘events’
这是代码,我不知道我做错了什么:
$homepagePosts = new WP_Query(array(
'posts_per_page' => 2,
));
while ($homepagePosts->have_posts()) {
$homepagePosts->the_post(); ?>
<div class="event-summary">
<a class="event-summary__date event-summary__date--beige t-center" href="<?php the_permalink(); ?>">
<span class="event-summary__month"><?php
$eventDate = new DateTime(get_field('event_date'));
echo $eventDate->format('M')
?></span>
<span class="event-summary__day"><?php the_time('d'); ?><?php echo $eventDate->format('d') ?></span>
</a>
<div class="event-summary__content">
<h5 class="event-summary__title headline headline--tiny"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h5>
<p><?php if (has_excerpt()) {
echo get_the_excerpt();
}
else {
echo wp_trim_words(get_the_content(), 18);
}
?><a href="<?php the_permalink(); ?>" class="nu gray">Read more</a></p>
</div>
</div>
答: 暂无答案
评论