Questions tagged «date»

5
the_date()不起作用
这个问题是从Stack Overflow 迁移过来的,因为可以在WordPress Development Stack Exchange上回答。 迁移 7年前。 我正在使用wordpress 3.2,并且做了这样的查询: <?php query_posts("posts_per_page=1post=type&page=post_parent=10");?> 然后,我尝试回显我查询的这篇文章的日期。 <?php echo the_date(); ?> 它给了我帖子的标题,摘要和固定链接,但没有日期。您认为问题是什么?我敢肯定这很尴尬。 这是我的视频页面模板文件中的代码: <?php query_posts("posts_per_page=1post=type&page=post_parent=10");?> <h2>Recent Video</h2> <h3 class="date"><?php echo the_date(); ?></h3> <p><strong><?php echo the_title(); ?></strong><?php echo the_excerpt(); ?></p> <p><a href="<?php echo the_permalink(); ?>" class="more2">Watch Now</a></p> 在这里,我尝试将查询放入循环中: <?php query_posts("posts_per_page=1post=type&page=post_parent=10");?> <?php if ( have_posts() ) …
20 php  query  mysql  date 

5
如果还有其他同一日期的帖子,则该帖子不显示日期
我有自定义帖子类型“新闻”。并制作了一个页面模板以查询该类型的帖子。这些帖子应该显示其发布日期,但是如果有多个具有相同日期的帖子,则仅第一篇帖子显示日期,而其他帖子则不显示。有没有办法显示每个帖子的日期? <?php get_header(); ?> <?php $wp_query = new WP_Query(); $wp_query -> query('post_type=press&showposts=100'); while ($wp_query->have_posts()) : $wp_query->the_post(); ?> <div id="press"> <div class="press-item cf"> <div class="press-img"><a href="<?php the_field('link'); ?>"><?php the_post_thumbnail('medium');?></a> </div> <div class="press-content"> <div class="press-title"><a href="<?php the_field('link'); ?>"><?php echo get_the_title(); ?></a> </div> <div class="press-excerpt"><?php the_excerpt(); ?> </div> <div class="press-date"><?php the_date(); ?></div> </div> …
19 date 


2
无法在Wordpress中选择旧日期
我无法将年份设置为1899年以下。如果我将年份设置为低于1899,则会自动设置为当前年份。 我已经购买了时间轴主题,并在他们的支持论坛中进行了询问。他们回答: 这听起来像是您的托管服务提供商创建的限制。主题没有什么妨碍您分配日期–如您所见,演示中的帖子使用的日期是1400年代。尝试与您的托管服务提供商联系,看看他们是否对解决该问题有任何见解。

2
如何获取每个帖子的日期?
我正在使用以下方法获取每个帖子的日期: while (have_posts()) : the_post(); //some html <li class="icon-date"><?php the_date('Y-m-d');?></li> <li class="icon-time"><?php the_date('H:i:s');?></li> 但是,我只知道第一篇文章的发布日期,为什么?
10 date  date-time 

2
将发布日期设置为1970年之前
我有一个称为书的自定义帖子类型。书籍出版日期为1700年至1900年。 我想将发布日期设置为这些日期(以便我可以查询按年份排序的结果),但是我似乎无法将日期设置为1970年1月1日之前。 有可能以某种方式做到这一点吗?

3
如何获取日期和今天之间发布的帖子?
是否可以通过这种方式在日期和今天之间发布帖子query_posts()? 例如:所有文章发表以来2012-04-01 谢谢 编辑: 如何在此查询中添加过滤日期? query_posts( array( array('post'), 'tax_query' => array( array( 'taxonomy' => 'post_format', 'field' => 'slug', 'terms' => array('post-format-image') ) ), 'cat' => '-173', 'post_status' => 'publish' ) );
10 posts  loop  query-posts  date 

1
wpdb更新添加当前时间戳不起作用
因此,使用$ wpdb-> update向自定义表中添加一些数据,尝试添加当前时间戳,但并没有保存正确的内容(已保存0000-00-00 00:00:00)。 概述代码 $wpdb->update('mytable', array( 'value' => 'hello world', 'edit' => date("Y-m-d h:i:s") //saves 0000-00-00 00:00:00 ), array( 'option_name' => 'the row' ), array('%s, %s') );
10 database  wpdb  date 


4
如何获得循环之外的发布日期?
我需要拉出帖子的发布日期,以使帖子自动过期。问题是我无法获得正确的发布日期。 这是我的代码: global $wpdb; $post_ids = $wpdb->get_results( "SELECT ID FROM $wpdb->posts WHERE post_status ='publish'" ); foreach($post_ids as $id){ $postdate = get_the_date("Y-m-d",$id ); //here is what I can figure out ....... ......etc } 当我回显$ postdate时,它给出了错误的日期。不是wp_posts表中存在的日期。 如何正确获取日期?
8 database  date 
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.