我很难完成两件事。我为事件创建了自定义帖子类型。我希望客户能够按日期发布事件。这意味着计划将来发布的发布帖子将显示为已发布。日期过后,我还希望这些帖子恢复为草稿。有人知道如何做到这一点吗?这是我一直在玩的代码:
<?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(); ?>
谢谢!!
答案 0 :(得分:0)
$args = array (
'post_type' => array( 'events' ),
'order' => 'ASC',
'posts_per_page' => '4',
'post_status' => array('publish', 'future'),
);
尝试在参数中添加'post_status' => array('publish', 'future')
。让我知道这是否有效。
答案 1 :(得分:0)
如果您只想显示将来的帖子,请尝试将WP_Query参数更改为此:
$args = array (
'post_type' => 'events',
'order' => 'ASC',
'posts_per_page' => '4',
'post_status' => 'future',
);
此外,您可能需要考虑使用事件插件来实现此功能;像The Events Calendar。