显示自定义域中的图片库

时间:2018-09-13 作者:ehsan

我在自定义帖子类型中有一个自定义字段。自定义字段是一个tinymce编辑器,我应该回显用户在其中输入的内容。如果用户输入文本,也会显示文本,但插入图像或图库时,输出为:

[gallery ids="221,207"]
这是我的代码:

$content  = get_post_meta( get_the_ID(), \'company-catalog\', true);
    if(isset($content) && !empty($content)){?>
        <h2>Catalog</h2>
        <div class="company-tech"><?php echo $content;  ?></div>
    <?php } ?>
如何强制wp显示图像库或单个图像而不是图像代码?

1 个回复
SO网友:David Corp
$content  = get_post_meta( get_the_ID(), \'company-catalog\', true);
    if(isset($content) && !empty($content)){?>
        <h2>Catalog</h2>
        <div class="company-tech"><img src="<?php echo $content;  ?>" /></div>
    <?php } ?>

img src tag added.

结束