Last active
February 23, 2017 03:56
-
-
Save nczz/22a7dd3eb970479a7c0827fe78ed62b8 to your computer and use it in GitHub Desktop.
回覆社團:https://www.facebook.com/groups/wordpresstw/permalink/1529719560388812/ 「想請教一下大家,有插件可以做到插入相片時,會使用自動設定嗎? 就是插入後為 width="auto" height="auto" 而不是數字」的問題
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?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; | |
| } |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
把
<?php以下整段,貼到正在使用的佈景主題下的 functions.php 最後面即可