首先,让我解释一下,我想做什么。我为每个用户都有一个独特的表格,他们可以在其中查看他们的帖子、编辑、在前端删除它们。但是当他们创建一篇文章时,它的状态是“待定”,因为只有我作为管理员才能给它“已发布”状态。我想要做的是向用户显示他们的帖子创建或最后一次修改的日期,然后是发布的日期。
如何显示我知道的发布日期。因为get_the_date('Y-m-d');
它可以正常工作,因为它显示了任何用户修改帖子的日期。但是我需要将日期存储在某个地方,然后用户最后修改它。
我设法做的是这样的:
<?php $id = get_the_ID(); ?>
<?php $the_last_time="the_time_". $id; ?>
<?php $the_last_date="the_date_". $id; ?>
<?php if ( in_array( $post->post_status, array('draft', 'future', 'pending') ) ) { ?>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wpuf' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
<p><?php echo get_the_time('G:i'); ?></p>
<p><?php echo get_the_date('Y-m-d'); ?></p>
<?php $$the_last_time=get_the_time('G:i'); ?>
<?php $$the_last_date=get_the_date('Y-m-d'); ?>
<?php setcookie("$the_last_time", $$the_last_time, time()+2592000); ?>
<?php setcookie("$the_last_date", $$the_last_date, time()+2592000); ?>
<?php } else { ?>
<a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( 'Permalink to %s', 'wpuf' ), the_title_attribute( 'echo=0' ) ); ?>" rel="bookmark"><?php the_title(); ?></a>
<p><?php echo htmlspecialchars($_COOKIE["$the_last_time"]) ?></p>
<p><?php echo htmlspecialchars($_COOKIE["$the_last_date"]) ?></p>
<?php } ?>
<?php wpuf_show_post_status( $post->post_status ) ?>
<p><?php echo get_the_time('G:i'); ?></p>
<p><?php echo get_the_date('Y-m-d'); ?></p>
如您所见,我正在使用 cookie 来存储这些变量。但问题是,它仅在一台用户计算机中存储可变信息,而我需要的是从任何计算机登录的每个用户都可以看到这些日期。
提前感谢任何可以帮助我的线索。;)
- - - - - 编辑 - - - - -
我试图创建一个 .php 文件并在那里存储这些变量。然后,当我需要 thenm 时,我可以包含该文件,但我做错了,因为它不起作用。
//Creating variables
<?php $id = get_the_ID(); ?>
<?php $the_last_time="the_time_". $id; ?>
<?php $the_last_date="the_date_". $id; ?>
<?php $the_last_time_file="the_time_file_". $id; ?>
<?php $the_last_date_file="the_date_file_". $id; ?>
//Every time after user modification
<?php $$the_last_time=get_the_time('G:i'); ?>
<?php $$the_last_date=get_the_date('Y-m-d'); ?>
<?php $$the_last_date_file=var_export($$the_last_date, true);?>
<?php $$the_last_date_file="<?php\n\n\$$the_last_date_file = $$the_last_date;\n\n?>";?>
<?php file_put_contents('/cookies/time-date-variables.php', $$the_last_date_file);?>
//And when I publish that post it should show echo variable
<?php include '/cookies/time-date-variables.php'; ?>
<?php echo $$the_last_date_file; ?>
我做错了什么?有什么线索吗?