A cosa serve il parametro "meta_input" in wp_insert_post ()?


10

Sto inserendo alcuni post in wordpress usando la funzione wp_insert_post () .

Voglio inserire alcuni campi personalizzati su ogni post e leggere la documentazione Anche se per questo è stato usato il parametro meta_info, ho provato qualcosa del genere:

$data = array(
        'post_author' => 1,
        'post_status' => 'publish',
        'post_title' => $post->getTitle(),
        'post_content' => $post->getContent(),
        'post_category' => $post->getCategory(),
        'tags_input' => $post->getTags(),
        'meta_input' => array( "_test" => "testx1" )
);

$postID = wp_insert_post( $data );

Il post viene inserito correttamente e anche i tag. Ma non ci sono campi personalizzati aggiunti. So che potrei usare add_post_meta () per aggiungerli, ma vorrei comunque sapere a cosa serve il parametro meta_input , perché ho fatto una ricerca nel database per "testx1" dopo aver inserito il post e non sono riuscito a trovare alcun risultato.

Risposte:


7

Questa parte di wp_insert_posts()dà via:

  if ( ! empty( $postarr['meta_input'] ) ) {
        foreach ( $postarr['meta_input'] as $field => $value ) {
            update_post_meta( $post_ID, $field, $value );
        }
  } 

dove vediamo come vengono aggiornati / aggiunti i meta campi post update_post_meta().

Ecco la descrizione in linea per meta_input:

Matrice di post meta valori codificati dalla loro meta meta chiave. Predefinito vuoto.

Questo è stato aggiunto in WordPress 4.4 ed ecco il relativo biglietto n. 20451 per ulteriori informazioni.

Nota che l'uso del trattino basso davanti al tasto meta _testlo nasconderà dai campi personalizzati metabox nella schermata di modifica post.


Ohh, il test wp im su 4.3 è, grazie mille.
streel

0

Il modo in cui lo faccio è tramite term_id non lumaca e funziona:

//insert Art items into database
$arr = array('item 1', 'item 2');
// $arr = array('art item 1', 'art item 2');

foreach ($arr as $a) { 
    wp_insert_post(array(
    //essentials
    //'ID'      => 1131,
    'post_author'       => 1,
    'post_title'        => $a,
    'post_type'         => 'post',
    'post_content'      => 'Something...',
    'post_status'       => 'publish',
    'post_name'         => 'post name',
    'meta_input'        => array( //(array) Array of post meta values keyed by their post meta key. Default empty.
        'city'     => '',// 'name' => $post['name']
        'country'  => ''// 'city' => $post['city']
    ),
    'tax_input'    => array(
        'category' => array(33,32), //id numbers work, slugs tend to be ignored !!!
        'post_tag' => array('one', 'two') //for tags slugs seem to work
    ),//(array) Array of taxonomy terms keyed by their taxonomy name. Default empty. Equivalent to calling wp_set_post_terms() / wp_set_object_terms()
    //'tags_input'  => array('una', 'trei'), //(array) Array of tag names, slugs, or IDs. Default empty. Equivalent to calling wp_set_post_tags().
    ), true);   
}
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.