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的图像插入的主要内容,如果未能解决你的问题,请参考以下文章

php 阻止Wordpress将额外的10px宽度插入图像标题短代码。

php 删除WordPress全尺寸图像插入post +选项并添加最大尺寸以防止用户插入大量i

php 对Wordpress中的插入图像+标题进行了大修,以产生html5输出

php Wordpress - 使用WP All Import Pro将图像导入帖子时插入图库的短代码

Wordpress:将内容添加到 edit.php

更改 Wordpress 图像的插入 HTML