前提・実現したいこと
wordpressの「sydney」テーマのヘッダー動画で、iPhoneも自動再生させたい
発生している問題・エラーメッセージ
以下サイトを参考にwp-includes/custom-header.js を wp-content/themes/sydney/js/ へ
コピーしてソースコードを修正しております。自動再生になりません。
※wp-includes/wp-custom-header.jsが見つからなかったのでwp-includes/custom-header.jsを使用しています。
・コード修正参考
https://forums.athemes.com/t/video-header-in-iphone/27465
・コアファイルを編集せずに修正参考
https://teratail.com/questions/88486
該当のソースコード
https://forums.athemes.com/t/video-header-in-iphone/27465を参考にへ変更しております。
1.Changing - supportsVideo:function()
supportsVideo: function() {
return!(a.innerWidth<b.minWidth||a.innerHeight<b.minHeight) {
return!0;
}
return true;
},
2.adding:
//video.playsinline = 'playsinline';
video.setAttribute('playsinline’,''); //changed in .min.js
video.setAttribute('muted'、''); //changed in .min.js
video.width = this.settings.width;
video.height = this.settings.height;
補足情報(FW/ツールのバージョンなど)
コーディング初心者で申し訳ないのですが、記述方法など教えていただけると助かります。
ここにより詳細な情報を記載してください。