如何显示已上传特色图片的文章?
我使用高级主题。我发现所有的主题都没有这个功能。
我需要在php文件中配置这个吗?
或者有其他方法来解决这个问题?
希望这不会偏离主题。
我试图添加
\'meta_key\' => \'_thumbnail_id\'
在下面的脚本中,但不起作用。
<div class="grids entries">
<?php
$cats_to_show = get_sub_field( \'category_posts_per_page\');
$cat_id = get_sub_field( \'category_section_name\' );
$ti_cat_posts = new WP_Query(
array(
\'posts_per_page\' => 5,
\'cat\' => $cat_id,
\'no_found_rows\' => true,
)
);
成为
<div class="grids entries">
<?php
$cats_to_show = get_sub_field( \'category_posts_per_page\');
$cat_id = get_sub_field( \'category_section_name\' );
$ti_cat_posts = new WP_Query(
array(
\'posts_per_page\' => 5,
\'cat\' => $cat_id,
\'meta_key\' => \'_thumbnail_id\' // Added
\'no_found_rows\' => true,
)
);