如何显示带有POST_CONTENT的标记

时间:2021-12-08 作者:Pete

我有这段代码来显示循环外的特定帖子的内容(实际上在archive.php模板文件中)。如何包含标签?

<?php
$my_id = 1576;
$post_id_1576= get_post($my_id);
$content = $post_id_1576->post_content;
$content = apply_filters(\'the_content\', $content);
$content = str_replace(\']]>\', \']]>\', $content);
echo $content;
?>

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

简单使用get_the_tags($my_id), 示例:

$posttags = get_the_tags($my_id);
if ($posttags) {
  foreach($posttags as $tag) {
    echo $tag->name . \' \'; 
  }
}
参考WordPress codex

相关推荐

Show all Tags in each post

我创建了一个名为“Project”的新帖子类型。我在其中注册了1个分类“标记”,如下所示:https://pastecode.xyz/view/844258b1我在post type“Project”中的1篇文章中输入了标签。如果要输入文章,它将显示该文章中的所有标记。谁能帮帮我吗。非常感谢。