Skip to content

Instantly share code, notes, and snippets.

@nczz
Last active February 23, 2017 03:56
Show Gist options
  • Select an option

  • Save nczz/22a7dd3eb970479a7c0827fe78ed62b8 to your computer and use it in GitHub Desktop.

Select an option

Save nczz/22a7dd3eb970479a7c0827fe78ed62b8 to your computer and use it in GitHub Desktop.
回覆社團:https://www.facebook.com/groups/wordpresstw/permalink/1529719560388812/ 「想請教一下大家,有插件可以做到插入相片時,會使用自動設定嗎? 就是插入後為 width="auto" height="auto" 而不是數字」的問題
<?php
add_action( 'media_send_to_editor', 'mxp_before_insert_media');
function mxp_before_insert_media($html, $id, $attachment) {
//此方法針對全媒體,不只有圖片
$html = preg_replace('/width="(\d+)"/i', 'width="auto"', $html);
$html = preg_replace('/height="(\d+)"/i', 'height="auto"', $html);
return $html;
}
@nczz
Copy link
Author

nczz commented Feb 23, 2017


<?php
以下整段,貼到正在使用的佈景主題下的 functions.php 最後面即可

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment