如果此帖子类型称为“图像”,则可以创建单个模板来处理仅显示图像帖子类型。
复制你的“单曲”。php“文件并重命名副本”单个图像。php’。现在,您可以只控制图像帖子。要去掉标签,我喜欢使用strip_tags()
作用如果您使用the_content()
它已经应用了内容过滤器,在<p>
标签。
下面是一个示例,说明如何在没有标签的情况下获取图像内容:
$imageContent = get_the_content();
$stripped = strip_tags($imageContent, \'<p> <a>\'); //replace <p> and <a> with whatever tags you want to keep after the strip
echo $stripped;
希望这有帮助!