Wordpress-为RSS安排帖子
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Wordpress-为RSS安排帖子相关的知识,希望对你有一定的参考价值。
From Web Design Ledger "13 Useful Code Snippets for WordPress Development"
function publish_later_on_feed($where) { global $wpdb; if(is_feed()) { // timestamp in WP-format // value for wait; + device $wait = '5'; // integer $device = 'MINUTE'; //MINUTE, HOUR, DAY, WEEK, MONTH, YEAR // add SQL-sytax to default $where $where .= " AND TIMESTAMPDIFF($device, $wpdb->posts.post_date_gmt, '$now') > $wait "; } return $where; } add_filter('posts_where', 'publish_later_on_feed');
以上是关于Wordpress-为RSS安排帖子的主要内容,如果未能解决你的问题,请参考以下文章
PHP Wordpress:在RSS Feed中显示帖子缩略图
PHP 将自定义帖子类型添加到rss feed [WordPress]