自定义字段和事件

Custom Fields and Events

提问人:COBNETCKNN 提问时间:11/13/2019 最后编辑:JainilCOBNETCKNN 更新时间:11/13/2019 访问量:67

问:

我在 WordPress 主题中设置动态日期时遇到了问题。我安装了插件来为我的活动帖子制作自定义字段,我在帖子之外制作了单独的部分,并在 .Advanced Custom Fieldswp-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>
php wordpress 高级自定义字段

评论

0赞 j08691 11/13/2019
我们需要在最小的可重现示例中提供实际代码。我们不调试映像。
1赞 Rojo 11/13/2019
@j08691除此之外,屏幕截图主机可能会在某个时候被删除,或者可能会被某些用户阻止。您可以设置问题中的代码格式。在编辑您的问题时,屏幕右侧有一个指南
0赞 COBNETCKNN 11/13/2019
我在我的手机上,它现在已经修好了:)
0赞 denisey 11/13/2019
您能提供如何设置自定义字段吗?
0赞 COBNETCKNN 11/13/2019
@denisey字段类型:日期选取器 显示格式:12/11/2019 返回格式:12/11/2019 规则:帖子类型等于 事件活动:是

答: 暂无答案