添加帖子元时出现问题,并在产品页面上看到更改

时间:2019-06-14 09:49:22

标签: php wordpress woocommerce

我正在将这些元添加到帖子ID中,并且正确地看到它们已添加到数据库中,但是由于某些原因,我必须手动更新帖子以查看产品页面上的更改。我是否应该添加一些代码以查看更改而无需在发布后手动更新?

   $post_id = 12345;
   add_post_meta($post_id, 'test', 'string test');
   $args = array('ID' => $post_id, 'post_type' => 'product');
   wp_update_post($args);

1 个答案:

答案 0 :(得分:0)

如果要在产品页面中显示元标记,可以使用以下代码

    <?php $post_id = 12345;
echo get_post_meta( $post_id, ‘string test’, true ); ?>