Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我想根据自定义字段中的数据将 5 张图像中的一张拉到帖子中。
例如:如果自定义字段为 1,则显示图像 A。如果自定义字段为 2,则显示图像 B。如果自定义字段为 3,则显示图像 C。如果自定义字段为 4,则显示图像 D。
谢谢
在 php 中,您可以执行此操作,将您喜欢的图像命名为输入,例如输入 1 将加载 1.jpg
顺便说一句,下面的代码只是一个例子。您需要验证它是否是图像文件。其他人将能够加载您可能不喜欢加载的其他内容。
<?php echo '<img src="image_folder/'+ $customfieldvalue +'.jpg" />'; ?>