如何在将来发布时显示自定义帖子类型

问题描述 投票:0回答:2

我很难完成两件事。我为Events创建了一个自定义帖子类型。我希望客户能够按日期发布活动。这意味着发布计划在将来发布的帖子。我还希望这些帖子在日期过后恢复为草稿。有谁知道怎么做到这一点?这是我一直在玩的代码:

<?php 

//注册自定义帖子类型:活动帖子

add_action('init','events_register');

function events_register(){

$labels = array(
    'name' => _x('Events', 'post type general name'),
    'singular_name' => _x('Event', 'post type singular name'),
    'add_new' => _x('Add New', 'Event item'),
    'add_new_item' => __('Add New Event'),
    'edit_item' => __('Edit Event'),
    'new_item' => __('New Event'),
    'view_item' => __('View Event Item'),
    'search_items' => __('Search Events'),
    'not_found' =>  __('Nothing found'),
    'not_found_in_trash' => __('Nothing found in Trash'),
    'parent_item_colon' => ''
);

$args = array(
    'labels' => $labels,
    'public' => true,
    'publicly_queryable' => true,
    'show_ui' => true,
    'query_var' => true,
    'menu_icon' => 'dashicons-calendar-alt',
    'rewrite' => true,
    'capability_type' => 'post',
    'hierarchical' => false,
    'menu_position' => 4,
    'supports' => array('title','editor','thumbnail')
  ); 

register_post_type( 'events' , $args );

function setup_future_hook() {
    // Replace native future_post function with replacement
        remove_action('future_events','_future_post_hook');
        add_action('future_events','publish_future_post_now');
    }

    function publish_future_post_now($id) {
    // Set new post's post_status to "publish" rather than "future."
        wp_publish_post($id);
    }

    add_action('init', 'setup_future_hook');

}

这是我的循环:

<?php // WP_Query arguments
            $args = array (
            'post_type'              => array( 'events' ),
            'order'                  => 'ASC',
            'posts_per_page'         => '4',
            );

            // The Query
            $query = new WP_Query( $args );

            // The Loop
            if ( $query->have_posts() ) {
            while ( $query->have_posts() ) {
            $query->the_post(); ?>
            <div class="col-md-6">
                <div class="event-box">
                    <h4><?php the_title(); ?></h4>
                    <h5><?php the_field('venue_name'); ?></h5>
                    <div class="date"><?php the_date( 'F j, Y' ); ?></div> 
                    <div class="time"><?php the_field('event_time'); ?></div>
                    <div class="row">
                        <div class="col-6">
                            <a target="_blank" class="btn btn-primary" href="<?php the_field('buy_tickets_link'); ?>">Buy Tickets</a>
                        </div>
                        <div class="col-6">
                            <a target="_blank" class="btn btn-primary" href="<?php the_field('venue_link'); ?>">Venue Info</a>
                        </div>
                    </div>
                </div>
            </div>

            <?php }
            } else {
            // no posts found
            }

            // Restore original Post Data
            wp_reset_postdata(); ?>

谢谢!!

wordpress custom-post-type
2个回答
0
投票
        $args = array (
            'post_type'              => array( 'events' ),
            'order'                  => 'ASC',
            'posts_per_page'         => '4',
            'post_status' => array('publish', 'future'),
        );

尝试在你的论点中添加'post_status' => array('publish', 'future')。如果这有效,请告诉我。


0
投票

如果您只想显示将来的帖子,请尝试将WP_Query参数更改为:

$args = array (
    'post_type'      => 'events',
    'order'          => 'ASC',
    'posts_per_page' => '4',
    'post_status'    => 'future',
);

此外,您可能需要考虑使用事件插件来实现此功能;像The Events Calendar

© www.soinside.com 2019 - 2024. All rights reserved.