我有一个关于获取方法价值的问题
custom_get_post_attachments(get_the_ID(), $__width, $__height, get_the_title())
此代码生成html代码(<img src="...".....>
)
如果我回显方法它将显示图片,我不需要显示。
我需要获取生成的html代码。如何在不显示图片的情况下进行操作?
谢谢
答案 0 :(得分:0)
如果您不想评估HTML,则需要将其转义。
echo htmlentities(custom_get_post_attachments(get_the_ID(), $__width, $__height, get_the_title()));