Skip to content

Instantly share code, notes, and snippets.

@frontend-coder
Last active July 7, 2022 11:47
Show Gist options
  • Save frontend-coder/b6d534fd94d5139743a5feae1aa9f146 to your computer and use it in GitHub Desktop.
Save frontend-coder/b6d534fd94d5139743a5feae1aa9f146 to your computer and use it in GitHub Desktop.
31. Як добавити підтримку всіх типів записів #wordpress
add_theme_support( 'post-thumbnails' );
// Добавити цю стрічку
add_theme_support( 'post-formats', array('aside', 'gallery', 'link', 'image', 'quote', 'status', 'video', 'chat', 'audio') );
<body <?php body_class(); ?> >
<div <?php post_class(); ?> >
добавляємо до обгортки картки поста
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment