您可以将代码包装在供应商页面上进行比较。因此,如果供应商的名称是其页面的标题,并且最新帖子有一个保存供应商名称的元字段,则可能如下所示:
$my_most_recent_post = get_posts( \'numberposts=1\' );
$my_most_recent_post_id = $my_most_recent_post[0]->ID;
// Get the featured item\'s meta information here
$meta = get_post_meta($my_most_recent_post_id, \'my_custom_meta\', $single = true);
if ( $meta == \'Featured Vendor\' )
{
// display the featured vendor information here
}
我假设您将供应商信息与所有产品条目一起存储。无论您存储的是供应商的标题、唯一ID还是slug,这种比较都应该是相似的。