要创建所需的库,请执行以下步骤:
1) 导航到主题文件夹并创建一个名为cpt gallery的文件。php将此代码复制并粘贴到文件中
<?php
/*
Template Name: Custom Post Type Gallery
Description: Creates a gallery of featured images from a custom post type
Notes: Make sure you have support for thumbnails enabled
*/
get_header();
// Query the custom post type to display
$args = array(\'post_type\' => \'CUSTOM POST TYPE\');
$query = new WP_Query( $args );
?>
<?php if ( $query->have_posts() ) : while ( $query->have_posts() ) : $query->the_post(); ?>
<?php if ( has_post_thumbnail() ): ?>
<a href="<?php the_permalink(); ?>"><?php the_post_thumbnail(\'thumbnail\'); ?></a>
<?php endif; ?>
<?php endwhile; endif; ?>
<?php get_footer(); ?>
3)在WordPress中,创建一个名为“主页”的新页面,并在右侧的“页面属性”下从菜单中选择模板“自定义帖子类型库”
4)导航到“设置”>“阅读”,在“首页显示”选项下,选择“静态页面”,然后选择您创建的标有“主页”的页面 保存这些更改
注意:确保将“自定义帖子类型”一词替换为自定义帖子类型的实际名称。这段代码将拉入您定义的每个自定义帖子类型,循环浏览它们,然后显示该帖子的特色图像缩略图以及链接
我已经测试过了,所以它应该对您很好。如果您需要进一步澄清,请告诉我。