- 21, Oct 2024
- #1
Я пытаюсь изменить тему, чтобы она работала с моими настраиваемыми полями (я использую ACF для большинства данных, размещаемых на страницах) для сайта с текстами песен.
echo
Исходный код был таким: $metro_creativex_posttitle = get_the_title();
$metro_creativex_feat_image = wp_get_attachment_image_src(
$post->ID,
get_field('sd_single_img'),
'single-post-thumbnail'
);
if(isset($metro_creativex_feat_image[0])):
echo '<div class="img">'.get_the_post_thumbnail().'</div>';
endif;
that shows the posts in categories pages.
Now, since my posts don't have any featured images but only one or two images via custom fields, my first intent is to replace the 'custom thumbnail' with the single cover art, so first thing first I replaced the get_field
Это часть get_post_thumbnail
, and it at least seems to detect whenever a song has or not a single cover picture:
content.php
с $metro_creativex_posttitle = get_the_title();
$metro_creativex_feat_image = wp_get_attachment_image_src(
get_post_thumbnail_id( $post->ID ),
'single-post-thumbnail'
);
if(isset($metro_creativex_feat_image[0])):
echo '<div class="img">'.get_the_post_thumbnail().'</div>';
endif;
to make it show the actual image and not only a blank space above the song title on the category menu: Моя главная проблема сейчас в том, что я не могу понять, что мне нужно записать на
Ссылка на мою страницу
Как я могу это исправить?