php 将发布日期列添加到事件WP列表表(TEC 4.x)

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 将发布日期列添加到事件WP列表表(TEC 4.x)相关的知识,希望对你有一定的参考价值。

<?php
/**
 * The Events Calendar: Add "Post Date" column to the wp-admin Events posts list.
 * 
 * @link https://gist.github.com/barryhughes/38d7131462bd3912e571d5e6f3b5762e
 */
add_action( 'manage_posts_custom_column', 'events_post_date_column', 10, 2 );
add_filter( 'manage_tribe_events_posts_columns', 'events_post_date_column_header' );

function events_post_date_column( $column_id, $post_id  ) {
	echo 'post_date' === $column_id ? get_the_date( '', $post_id ) : '';
}

function events_post_date_column_header( $headers ) {
	$headers['post_date'] = 'Post Date';
	return $headers;
}

以上是关于php 将发布日期列添加到事件WP列表表(TEC 4.x)的主要内容,如果未能解决你的问题,请参考以下文章