Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Test with Stinger 5 Theme / Stinger 5 でテスト #6

Open
mayukojpn opened this issue Dec 2, 2015 · 3 comments
Open

Test with Stinger 5 Theme / Stinger 5 でテスト #6

mayukojpn opened this issue Dec 2, 2015 · 3 comments

Comments

@mayukojpn
Copy link
Owner

まなしばさんがエラーでたみたいなので原因をさぐる!

mayukojpn added a commit that referenced this issue Dec 11, 2015
@mayukojpn
Copy link
Owner Author

STINGER5 は配布終了?していて STINGER6 がでていたのでテストしてみた。問題点をリストアップします。

iframe が div タグで囲われてしまう

Facebook いいねボタンは iframe で生成されていますが、stinger6/functions.php 319行目から、the_content 内にある iframe 要素に対して強制的に div タグで囲うカスタマイズがされています。レスポンシブ対応させるためのカスタマイズみたいですが、設計をなおした方がいいように思われます。STINGER6 作者さんにパッチを送る予定。
image

修正したほうがいい箇所 stinger6/functions.php 319行目

 if ( !function_exists( 'st_wrap_iframe_in_div' ) ) {
    /**
     * iframeのレスポンシブ対応
     */
    function st_wrap_iframe_in_div( $the_content ) {
        if ( is_singular() ) {
            $the_content = preg_replace(
                '!(<\s*?iframe(?:\s+[^>]*>)?)(.*?)(</\s*?iframe\s*?>)!is',
                '<div class="youtube-container">$1$2$3</div>',
                $the_content
            );
        }

        return $the_content;
    }

    add_filter( 'the_content', 'st_wrap_iframe_in_div' );
}

@mayukojpn
Copy link
Owner Author

@kuck1u さんが修正版のコード書いてくれた!ありがとうございます
https://gist.github.com/kuck1u/addaff91ce01c2a9ba9d

@mayukojpn mayukojpn changed the title Stinger 5 でテスト Test with Stinger 5 Theme / Stinger 5 でテスト Dec 18, 2015
@mayukojpn
Copy link
Owner Author

くっくるさんのコードがうまくいったので、Stinger6 の作者さんに Diff のリンクを貼ってお問い合わせをしました。お返事を待ってみます :)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant