http://wordpress.org/extend/plugins/simple-timed-plugin/
我使用此功能来消除(而不是删除)过期的帖子:
<?php if (function_exists('simple_timed_content')) : ?>
<?php if (simple_timed_content("offdate=20120309 offtime=2350")) : ?>
Some content goes here
<?php endif; ?> <?php endif; ?>
我想用作自定义字段中的日期,如下所示:
<?php if (simple_timed_content("offdate='$end_date' offtime='$end_time'")) : ?>
其中:`
$end_date=date( 'Ymd', strtotime( get_post_meta( $Post->ID, "_EventEndDate", true), time()));`
和
$end_time=date( 'HM', strtotime( get_post_meta( $Post->ID, "_EventEndDate", true), time()));`
假设 _EventEndDate 值始终为:Ymd HM (20120309 2350) 完整的代码如何工作?
我的另一个选择是使用我发现的这段代码:
www.rockia.com/2010/01/modify-you-wordpress-theme-to-enable-an-expiration-for-your-posting
但它似乎不适用于我的
www.wordpress.org/extend/themes/bombax
循环在 single.php 文件中的位置
如果有人可以提供帮助,我将不胜感激。我是 php 新手。先感谢您