使用图像替换文本作为图像标题文本
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了使用图像替换文本作为图像标题文本相关的知识,希望对你有一定的参考价值。
theme_preprocess_node: /////////////////////// //Image caption text ////////////////////// $vars['content'] = _theme_altAsImageText($vars['content']); /** * Convert img tags alt text to caption text * * @param string $text The text with img tags in * * @return string The text with img tags and caption text from the alt field */ function _theme_altAsImageText($text) { foreach( $result[0] as $key => $img_tag) { } foreach( $result[0] as $key => $img_tag) { if($imgTextResult[$key]) { { $imgText = ' <div class="picture left"> <span></span>' . $img_tag . '<br /> ' . $imgTextResult[$key] . ' </div> '; } } } return $text; }
以上是关于使用图像替换文本作为图像标题文本的主要内容,如果未能解决你的问题,请参考以下文章