php 过滤WordPress的图像插入

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 过滤WordPress的图像插入相关的知识,希望对你有一定的参考价值。

public function hn_insert_image( $html, $id, $caption, $title, $align, $url  ) {
  $html5 = "<figure id='post-$id media-$id' class='align-$align'>";
  $html5 .= "<img src='$url' alt='$title' />";
  $html5 .= "<figcaption class="wp-caption">$caption</figcaption>";
  $html5 .= "</figure>";
  return $html5;
}

add_filter( 'image_send_to_editor', array( &$this, 'hn_insert_image' ), 10, 9 );

以上是关于php 过滤WordPress的图像插入的主要内容,如果未能解决你的问题,请参考以下文章