简体   繁体   中英

Problem with add_post_meta() function in Wordpress

When a use it like this:

add_post_meta($post_ID, 'Name', "Bob", true );   

works fine, but when a store an string value inside a variable, for example:

$name = "Bob";
add_post_meta($post_ID, 'Name', $name, true ); // <---- This doesn't work.

Some help please. Thanks.

Try the below code.

$name = "Bob"; 
update_post_meta($post_ID, 'Name', $name );
$latestVideo = wp_get_recent_posts(array(
    'numberposts' => 1,
    'post_type'   =>'video',
    'post_status' => 'publish'
));

$latestVideoWeek = get_post_meta( $latestVideo[0]["ID"], "Week", true);
$latestVideoDate = get_post_meta( $latestVideo[0]["ID"], "Date", true);

function meta_info_video( $post_ID ) {
    add_post_meta( $post_ID, 'Semana', $latestVideoWeek, true );
    add_post_meta( $post_ID, 'Fecha', $latestVideoDate, true );
    add_post_meta( $post_ID, 'URL', '0', true  );
}

add_action( 'draft_video', 'meta_info_video' );

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM