14/06/2012, 08:55
|
| Colaborador | | Fecha de Ingreso: marzo-2008 Ubicación: Buenos Aires
Mensajes: 3.141
Antigüedad: 16 años, 8 meses Puntos: 656 | |
Respuesta: Mostrar en el index las entradas publicadas hace 2 días Jugá con algo como esto: http://stackoverflow.com/questions/8...-by-date-range
Código PHP:
Ver original<?php function filter_where($where = '') { $where .= " post_date = '" . date('Y-m-d', strtotime('-2 days')) . "'"; return $where; } add_filter('posts_where', 'filter_where'); query_posts($query_string); ?>
|