Как изменить иконки в блоках внимания?
1. Для старого классического редактора
Перейдите Внешний вид – Настроить – Дополнительные стили и вставьте код
/* Блок Question */
.entry-content blockquote.question:before {
content: "\2753";
}
/* Блок Warning */
.entry-content blockquote.warning:before {
content: "\2757";
}
/* Блок Danger */
.entry-content blockquote.danger:before {
content: "\274c";
}
/* Блок Check */
.entry-content blockquote.check:before {
content: "\2705";
}
/* Блок Info */
.entry-content blockquote.info:before {
content: "\1f446";
}
/* Блок Thumbs Up */
.entry-content blockquote.thumbs-up:before {
content: "\1f44d";
}
/* Блок Thumbs Down */
.entry-content blockquote.thumbs-down:before {
content: "\1f44e";
}
/* Блок Quote */
.entry-content blockquote.quote:before {
content: "\275d";
}
2. Для нового редактора блоков Gutenberg
/* Блок Warning */
.entry-content blockquote.is-style-warning:before {
content: "\2757";
}
/* Блок Question */
.entry-content blockquote.is-style-question:before {
content: "\2753";
}
/* Блок Danger */
.entry-content blockquote.is-style-danger:before {
content: "\274c";
}
/* Блок Check */
.entry-content blockquote.is-style-check:before {
content: "\2705";
}
/* Блок Info */
.entry-content blockquote.is-style-info:before {
content: "\1f446";
}
/* Блок Thumbs Up */
.entry-content blockquote.is-style-thumbs-up:before {
content: "\1f44d";
}
/* Блок Thumbs Down */
.entry-content blockquote.is-style-thumbs-down:before {
content: "\1f44e";
}
/* Блок Quote */
.entry-content blockquote.is-style-quote:before {
content: "\275d";
}
Для каждого блока внимания свой блок кода. В директиве
content: ""
замените на свою иконку.
Список иконок можно посмотреть тут:
https://www.htmlsymbols.xyz/unicode
Вам помог ответ?