I'm trying to theme a view in Drupal 7. I have the view theme set-up and it is working fine. The issue that I have is that I can't see a way to override the $content
variable passed into the render()
function.
Is there a pre/process hook that I sh开发者_开发知识库ould be using or should it be done in a .tpl
file using the $node
variable?
Currently I'm looking at the $node
variable but the image attached to the content has a url of public://field/image/imagefield_JmDqqm.jpg
and I've not been able to find a function (so far) that will parse that url into the correct url to view the image on the page.
Thanks for any and all help.
The file_create_url function is what you're after
精彩评论