Come pubblicare post tra una data e oggi?


10

È un modo per pubblicare post tra una data e oggi con query_posts()?

Esempio: tutti i post pubblicati dal 01-04-2012

Grazie

MODIFICARE :

Come aggiungere la data del filtro su questo post delle query?

query_posts( array(  
    array('post'),
    'tax_query' => array(
        array(
            'taxonomy' => 'post_format',
            'field' => 'slug',
            'terms' => array('post-format-image')
        )
    ),
    'cat' => '-173',
    'post_status' => 'publish'
) );


Non utilizzare query_posts (). Controlla questo -> wordpress.stackexchange.com/a/1755/7890
moraleida

Risposte:


23

AGGIORNAMENTO 23 dicembre 2014

Esiste un metodo migliore che utilizza la date_queryproprietà della WP_Queryclasse:

$args = array(
    'post_type' => 'post', 
    'tax_query' => array(
        array( 
            'taxonomy'  => 'post_format',
            'field'     => 'slug',
            'terms'     => array( 'post-format-image' )
        )
    ),
    'cat'           => '-173',
    'post_status'   => 'publish',
    'date_query'    => array(
        'column'  => 'post_date',
        'after'   => '- 30 days'
    )
);
$query = new WP_Query( $args );

VECCHIA RISPOSTA

Usa i parametri Time in WP_Query ()

Esempio di citazione dal codice:

Restituisci post degli ultimi 30 giorni:

// This takes your current query, that will have the filtering part added to.
$query_string = array(
    'post_type' => 'post', 
    'tax_query' => array(
        array(
            'taxonomy'  => 'post_format',
            'field'     => 'slug',
            'terms'     => array( 'post-format-image' )
        )
    ),
    'cat'           => '-173',
    'post_status'   => 'publish'
);

// Create a new filtering function that will add our where clause to the query
function filter_where( $where = '' ) {
    // posts in the last 30 days
    $where .= " AND post_date > '" . date( 'Y-m-d', strtotime( '-30 days' ) ) . "'";
    return $where;
}

add_filter( 'posts_where', 'filter_where' );
$query = new WP_Query( $query_string );
remove_filter( 'posts_where', 'filter_where' );

Modifica (in risposta alla domanda aggiornata del PO).

Evitare di utilizzare query_posts . Puoi usare la tecnica sopra per modificare la tua query principale (soggetto ad alcuni condizionali extra - è la home page, è una pagina chiamata 'foobar' ecc.):

function wpse52070_filter_where( $where = '' , $query ) {
   if( $query->is_main_query() && is_page( 'foobar' ) ){
      // posts in the last 30 days
      $where .= " AND post_date > '" . date( 'Y-m-d', strtotime( '-30 days' ) ) . "'";
   }

    return $where;
}
add_filter( 'posts_where', 'wpse52070_filter_where' );

Ok ! Quindi il filtro è ora attivo $query_string. Ma come funziona con i miei argomenti in Query_Posts? (Controlla la mia modifica @Moraleida)
Steffi

1
@Steffi: vedi la risposta aggiornata. Spero non ti dispiaccia l'aggiunta, Moraleida.
Stephen Harris,

1
ho appena aggiunto la tua query corrente, così puoi abbandonare query_posts immediatamente. :) E grazie @StephenHarris per l'aggiornamento rapido!
moraleida,

Grazie @moraleida! Sorprendente ! Solo una cosa. Hai detto: "Evita di usare query_posts". Ma è meglio usare query_posts()nei file template (come home.php ) che new WP_Query()no?
Steffi,

Non proprio. query_postsdovrebbe essere usato solo per modificare il ciclo principale - e molte persone sostengono che nemmeno allora (c'è un the pre_get_postsfiltro anche per quello). Mi trovo spesso a utilizzare solo WP_Queryo get_postsper tutte le mie query in quanto sono indipendenti e possono essere utilizzate più volte senza interferire con qualsiasi altra cosa. Controlla le risposte collegate sui tuoi commenti per una spiegazione approfondita. :)
moraleida

3

A partire da 3.7 è possibile utilizzare date_query http://codex.wordpress.org/Class_Reference/WP_Query#Date_Parameters

Quindi gli args passati sembrerebbero:

$query_string = array(
      'post_type' => 'post', 
      'date_query' => array(
        'after' => '2012-04-01' 
      ),
      'tax_query' => array(
          array( 
             'taxonomy' => 'post_format',
             'field' => 'slug',
             'terms' => array('post-format-image')
          )
      ),
      'cat' => '-173',
      'post_status' => 'publish'
);

0

Se desideri ottenere post tra due date, utilizza i parametri prima e dopo nel parametro date_query,

$query_string = array(
  'post_type' => 'post', 
  'date_query' => array(
    'column' => 'post_date',
    'after' => '2012-04-01',
    'before' => '2012-04-30' 
  ),
  'tax_query' => array(
      array( 
         'taxonomy' => 'post_format',
         'field' => 'slug',
         'terms' => array('post-format-image')
      )
  ),
  'cat' => '-173',
  'post_status' => 'publish'
);
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.