使用以下代码时不会更新该值:
add_action( \'save_post\', \'updatethumb\' );
function updatethumb( $post_id ) {
//verify post is not a revision
if ( !wp_is_post_revision( $post_id ) ) {
//$thumb = get_post_meta(get_the_ID(), \'thumb\', false);
$ft=get_post_meta(get_the_ID(), \'thumb\', true);
//echo \'<script>alert("\'.$ft.\'")</script>\';
update_post_meta(get_the_ID(), \'thumb\', \'testxxx\');
}
}
为什么会这样?