php 在编辑器中使所有Wordpress图像路径相对

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了php 在编辑器中使所有Wordpress图像路径相对相关的知识,希望对你有一定的参考价值。

<?php
function switch_to_relative_url($html, $id, $caption, $title, $align, $url, $size, $alt)
{
$imageurl = wp_get_attachment_image_src($id, $size);
$relativeurl = wp_make_link_relative($imageurl[0]);   
$html = str_replace($imageurl[0],$relativeurl,$html);
      
return $html;
}
add_filter('image_send_to_editor','switch_to_relative_url',10,8);

?>

以上是关于php 在编辑器中使所有Wordpress图像路径相对的主要内容,如果未能解决你的问题,请参考以下文章

php 更改WordPress图像编辑器

PHP Wordpress:获取与主题相关的图像路径

PHP WordPress-获取与主题相关的图像路径

php 将默认WordPress图像编辑器设置为GD库

php 编辑Wordpress图像压缩级别

在 Raphael js 中使路径和图像可拖动