• Resolved windorz

    (@windorz)


    xo_featured_image_tools_image_urlを使って、外部URLを直接指定することで、アイキャッチ画像を設定したいと思っています。

    set_featured_image関数のソースを拝見したところ、記事内にimgタグが無い場合はフックまで到達できないようなソースになっておりました。

    matches[0]にテキトウな値を入れれば、フックまで到達し、希望の動きになることは確認しました。

    本来の使い方とは異なるフックの使い方なのかもしれませんが、記事ごとに外部URLをプログラマブルに指定してアイキャッチ画像を設定したいと考えています。

    set_featured_imageのpreg_matchの結果を上書きするようなフックを用意して頂くことは可能でしょうか?

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

    (@ishitaka)

    こんにちは

    新バージョン (1.11.0) で、投稿のコンテンツをフィルターするフック xo_featured_image_tools_post_content を追加しました。これで代用できませんか?

    例:

    add_filter( 'xo_featured_image_tools_post_content', function( $content, $post ) {
    
    	$content = '<img src="https://example.com/sample.webp">';
    
    	return $content;
    }, 10, 2 );
    
    Plugin Author ishitaka

    (@ishitaka)

    リンク先を間違えてしまいました。

    正しくはこちらです。

    Thread Starter windorz

    (@windorz)

    ありがとうございます。

    ご返信いただいた内容で対応できました。

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘xo_featured_image_tools_image_urlについて’ is closed to new replies.