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
| public function saved(Task $task): void | |
| { | |
| if ($task->isDirty('attachment')) { | |
| $originalFieldContents = $task->getOriginal('attachment'); | |
| $newFieldContents = $task->attachment; | |
| # We attempt to JSON decode the field. If it is an array, this is an indication we have ->multiple() activated | |
| $originalFieldContentsDecoded = json_decode($task->getOriginal('attachment')); |
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
| Здесь описан код (для WordPress), позволяющий растянуть видео с Ютуба на 100% ширины текстового блока с сохранением пропорций по вертикали. | |
| Сработает в случае, если видео в визуальном редакторе вставляется просто ссылкой http://joxi.ru/a2X7zlWIwMV6Zm | |
| или кодом <iframe src="https://www.youtube.com/embed/nsuxoRkai7A" width="560" height="315" frameborder="0" allowfullscreen="allowfullscreen"></iframe>: | |
| http://joxi.ru/Dr8oRa3Iojy7dA. | |
| Нижеследующий код нужно разместить в style.css активной темы | |
| или, чтобы не вносить изменение в код темы (что будет хорошей идеей с точки зрения простоты установки возможных обновлений), | |
| добавьте код в дополнительные стили: Админка → Внещний вид → Настроить → Дополнительные стили: http://joxi.ru/EA4aLdKfo5bd8r. |