web:wordpress:generatepress
Содержание
GeneratePress - заметки
Hooks Visual Guide
Кнопка/css
Гугл шрифты
Разрешить Sections/Секции в сайдбаре
add_filter( 'generate_sections_sidebars','__return_true' );
Изменить копирайт
В настройках шаблона - Customize > Layout > Footer
В коде
add_filter( 'generate_copyright','tu_custom_copyright' ); function tu_custom_copyright() { ?> Your new message in here. You can add anything you want, including PHP and HTML. <?php }
Убрать футер
add_action( 'after_setup_theme', 'tu_remove_footer_area' ); function tu_remove_footer_area() { remove_action( 'generate_footer','generate_construct_footer' ); }
Показать дату изменения вместо даты публикации
Дочерняя тема
- Загрузить - Appearance > Themes > Add New > Upload
Выводить только featured image в Blog
Customizer > Layout > Blog > Excerpt > 0
Изменить next page - previous page
Top кнопка
Featured Image
web/wordpress/generatepress.txt · Последнее изменение: 2021/06/19 02:10 — dx
Обсуждение