我在Wordpress中创建了一个自定义帖子类型。可视化编辑器显示段落中断,但在查看帖子时,这些中断消失,与常规帖子不同。
这是我在single-custompostype.php文件中的内容代码:
<?php echo $content = get_the_content(); ?>
我读到我应该添加它:
$content = apply_filters("the_content",$post->post_content);
但是当我这样添加它时,没有效果:
<?php $content = apply_filters("the_content",$post->post_content); echo $content = get_the_content(); ?>
我应该做些什么?
答案 0 :(得分:0)
以下是否为您解决了这个问题?看起来你正好$content
,然后覆盖它......
<?php
$content = apply_filters("the_content",$post->post_content);
echo $content;
?>