Wp_insert_post () içindeki “meta_input” parametresi ne için kullanılır?


10

Ben wp_insert_post () işlevini kullanarak wordpress içine bazı yazı ekliyorum .

Her yazıya bazı özel alanlar eklemek istiyorum ve meta_info parametresi bunun için kullanıldı rağmen belgeleri okuma, böyle bir şey denedim:

$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 );

Gönderi doğru şekilde eklenir ve etiketlenir. Ancak eklenen özel alan yok. Ben kullanabilirsiniz biliyorum add_post_meta () eklemek için ama yine de ne olduğunu bilmek istiyorum meta_input ben yazı taktıktan sonra "testx1" için veritabanı üzerinde bir arama yaptım, çünkü parametre için kullanılır ve herhangi bir sonuç bulamadık.

Yanıtlar:


7

Bu kısmı wp_insert_posts()verir:

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

burada meta meta alanlarının nasıl güncellendiğini / eklendiğini görüyoruz update_post_meta().

İşte satır içi açıklaması meta_input:

Post meta anahtarlarıyla anahtarlanan post meta değerleri dizisi. Varsayılan boş.

Bu, WordPress 4.4'e eklenmiştir ve daha fazla bilgi için ilgili 20451 numaralı bilet bulunmaktadır .

Meta tuşu önünde çizgi kullanılarak geldiğini hatırlatırız _testgizlemek edecek özel alanlar sonrası düzenleme ekranında METABOX.


Ohh, wp im testi 4.3, çok teşekkürler.
streel

0

Bunu yapmak slug değil term_id yoluyla ve işe yarıyor:

//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);   
}
Sitemizi kullandığınızda şunları okuyup anladığınızı kabul etmiş olursunuz: Çerez Politikası ve Gizlilik Politikası.
Licensed under cc by-sa 3.0 with attribution required.