如何在帖子数据表wordpress插件上显示Post Expiring插件

时间:2017-03-25 16:30:42

标签: php jquery mysql wordpress

我正在使用帖子数据表WordPress插件和即时通讯使用WordPress Post Expiring插件我想将过期的数据显示到数据表WordPress。

                $post_data_trans = array( 
                '{id}' => $_post->ID, 
                '{title}' => $title, 
                '{category}' => get_the_category_list( ', ', '', $_post->ID ), 
                '{date}' => get_the_date( $date_format, $_post ),
                '{expiring}' => get_the_date( $date_format, $post_id, 'expire_date' ),
                '{author}' => $author, 
                '{content}' => $this->get_post_content( $args['content_length'] ) 
            );

此帖子数据表wordpress插件的代码我使用Post Expiring插件中的过期列,这是过期后的代码

if( $column_name === 'expiring' ){
        $postexpired = get_post_meta( $post->ID, 'postexpired', true );
        if( preg_match("/^\d{4}-\d{2}-\d{2}$/", $postexpired) ) {
            $postexpired .= ' 00:00';
        }
        echo !empty($postexpired) ? $postexpired : __('Never');
    }

我得到的帖子的日期不是到期日,请任何人可以帮助我

0 个答案:

没有答案