Я создаю бесплатную тему WP, но почти ничего не знаю о PHP.Я не знаю, что делать с этим кодом, и был бы очень признателен, если бы кто-то мог поместить в него правильные теги PHP, так как рассказывать мне, что нужно добавить, немного походит на говорение со мной на латыни.Я попытался поставить <?php
в начале и ?>
в конце, но это не сработало:
if ( has_post_format( 'aside' ) {
// aside format post content here
} else if (has_post_format('gallery')) {
// stuff to display the gallery format post here
} else if (has_post_format('link')) {
// link format post content here
} else if (has_post_format('video')) {
// video format post content here
} else if (has_post_format('audio')) {
// audio format post content here
} else if (has_post_format('status')) {
// status format post content here
} else if (has_post_format('chat')) {
// chat format post content here
} else if (has_post_format('quote')) {
// quote format post content here
} else if (has_post_format('image')) {
// image format post content here
}else {
// code to display the normal format post here
}