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.
我在 drupal 7 中创建了一个自定义图像字段,现在想要输出它(它的 url 和文件名(完整文件名))。
我试过这个:-
echo $node->field_featured_image['und'][0]['filename']
但它不起作用:(
请问你能帮帮我吗?谢谢。
我试过这个;似乎工作
$image = field_get_items('node', $node, 'field_featured_image'); echo file_create_url($image[0]['uri']);
但是当没有图像时它也会显示一个 URL。认为它应该是空的。