ACF是一个第三方插件,我不知道它给了你什么功能,你可以使用。
不过,一般来说,您可以使用特定的自定义字段和值为帖子创建查询。
$args = array(
\'meta_key\' => \'featured\', // must match the key that ACF has used
\'meta_value\' => true, // must match the value that ACF has used
\'post_type\' => \'product\' // must match your post type
);
$the_query = new WP_Query( $args );
然后像正常情况一样运行二次回路:
if ( $the_query->have_posts() ) {
while ( $the_query->have_posts() ) {
$the_query->the_post();
// output html for each post here
}
/* Restore original Post Data */
wp_reset_postdata();
} else {
// no posts found
}
根据您的需要,您可以将其放入
front-page.php
模板,钩住它
the_content
或者把它变成一个短代码。