최근 테마들은 글 형식(Post Formats)을 지원하지 않는 경우가 많습니다. 아래의 방법으로 간단히 글 형식을 지원할 수 있습니다. 주의할 점은 기본(standard)는 글 형식이 없는 걸 의미하기 때문에 코드에 포함시키면 안 됩니다.
모든 글 형식을 지원하는 코드입니다.
<?php
function add_post_formats()
{
add_theme_support("post-formats", [
"image",
"gallery",
"link",
"video",
"audio",
"quote",
"aside",
"chat",
"status",
]);
}
add_action("after_setup_theme", "add_post_formats", 20);
Code language: HTML, XML (xml)
다음은 자주 사용하는 이미지, 갤러리, 비디오, 오디오만을 지원하는 코드입니다.
<?php
function add_post_formats()
{
add_theme_support("post-formats", [
"image",
"gallery",
"video",
"audio",
]);
}
add_action("after_setup_theme", "add_post_formats", 20);
Code language: HTML, XML (xml)
Leave a Comment