我需要从post meta获取自定义字段(_subtitle
)的值,并将其保存到帖子文本的开头(post_content)。
我怎样才能做到这一点? (我尝试了update()
功能,但之前丢失了帖子内容)
答案 0 :(得分:0)
如果你想将它放在模板中,你需要使用get_post_meta()
它可能看起来像那样。
<?php
$subs = get_post_meta(get_the_ID(),'_subtitle',true);
$post_content = get_the_content();
echo $subs.$post_content;
?>
这将是它的要点,你也可以过滤the_content();
并将代码放在 functions.php