• ブログの移転でインポートした記事にこちらのプラグインを使用してアイキャッチをつけたいと考えています? 移転元記事が本文に絵文字を使用されており?gifが最初のimgタグとして入りんでいるパターンがあり?それを除外したいのです(jpgファイルに絞りたい)?

    正規表現に疎く調べてみたのですが?
    admin.phpの162行?380行の正規表現を
    /<\s*img .*?src\s*=\s*[\"|\'](.*?(jpg|jpeg))[\"|\'].*?>/i
    に変更すれば?意図通りの挙動になりますでしょうか?

    ご教示お願いいたします?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Author ishitaka

    (@ishitaka)

    こんにちは

    特定の拡張子や小さいサイズの画像(例えば 32px 以下とか)を除外する機能は必要かなと思ってはいました。次のバージョンに追加したいと思います。

    それまでは、下記のようにプラグインのコードを変更して対応してください。

    プラグインの admin.php ファイル

    foreach ( $matches[0] as $key => $img ) {

    の行(163行、381行)の下に、

    $ext = substr( $matches[1][$key], strrpos( $matches[1][$key], '.' ) + 1 );
    if ( in_array( $ext, array( 'gif' ), true ) ) {
    	continue;
    }

    を挿入してください。

    • This reply was modified 5 years, 8 months ago by ishitaka.
    • This reply was modified 5 years, 8 months ago by ishitaka.
    Thread Starter initium

    (@initium)

    ありがとうございます!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘gifなどを除外したい’ is closed to new replies.