PHP image_attach节点中的主题图像

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP image_attach节点中的主题图像相关的知识,希望对你有一定的参考价值。

function phptemplate_image_attach_body($node){
  theme_add_style(drupal_get_path('module', 'image_attach') .'/image_attach.css');

  $image = node_load($node->iid);
  
  $info = image_get_info(file_create_path($image->images['preview']));
  $output = '';
  $output .= '<div style="width: '. $info['width'] .'px" class="image-attach-body">';
  $output .= l(image_display($image, 'preview'), "node/$image->nid", array(), NULL, NULL, FALSE, TRUE);
  $output .= '</div>'."\n";
  $output .= $node->body;
  return $output;
}

以上是关于PHP image_attach节点中的主题图像的主要内容,如果未能解决你的问题,请参考以下文章

php Wordpress - 主题目录中的图像

任何节点的 Drupal 主题模板文件

PHP 显示主题$节点的列表

PHP 特定节点的单独主题

PHP wordpress主题中图像的最大图像宽度(functions.php)

php WooCommerce - 在主题激活时设置图像尺寸