我正在将这些元添加到帖子ID中,并且正确地看到它们已添加到数据库中,但是由于某些原因,我必须手动更新帖子以查看产品页面上的更改。我是否应该添加一些代码以查看更改而无需在发布后手动更新?
$post_id = 12345;
add_post_meta($post_id, 'test', 'string test');
$args = array('ID' => $post_id, 'post_type' => 'product');
wp_update_post($args);
答案 0 :(得分:0)
如果要在产品页面中显示元标记,可以使用以下代码
<?php $post_id = 12345;
echo get_post_meta( $post_id, ‘string test’, true ); ?>