如何将自定义域转换为内容

时间:2017-04-11 作者:bpy

我有一些自定义帖子类型,其中有一些自定义字段需要在帖子内容中转换。

这可能吗?我该怎么做?

1 个回复
最合适的回答,由SO网友:MagniGeeks Technologies 整理而成

您可以使用类似的

<?php
//Post we need to update
$id = 37;

 $custom_field = get_post_meta( $id, \'custom_field_key\', true );
// Update post 37
  $mg_post = array(
      \'ID\'           => $id,
      \'post_content\' => $custom_field,
  );

// Update the post into the database
  wp_update_post( $mg_post );

//Delete the custom field
delete_post_meta( $id, \'custom_field_key\' );
?>
希望你有这个想法。让我知道你尝试了什么。

相关推荐

如何让`wp-list-table`显示我在Custom-Post中的`Custom-Fields`

一切都好吗<我需要wp-list-table 也要显示custom-fields 在每个custom-post 我有,但我不知道如何做到这一点,在这幅图中,它显示了带有字段的表格:Title, Author and Publication Date: 我想要的是能够选择custom-fields 将出现,例如以下示例Title, Carta, Naipe, Author, and Date of Publication: