作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有两种自定义帖子类型,名为 艺术家 和 绘画 .这两种帖子类型都有一个名为艺术家姓名的自定义字段,使用高级自定义字段插件创建。我需要能够将这两种帖子类型的自定义字段相互匹配,以便显示更多信息。
仅在查询中粘贴 args 和循环。如果需要,将发布更多代码。
<?php
$artist_name = get_field('artist');
$args = array(
'post_type' => 'artists',
'meta_value' => $artist_name
);
$query_artist = new WP_Query( $args );
if ( $query_artist->have_posts() ) {
while ( $query_artist->have_posts() ) {
$query_artist->the_post(); ?>
<p class="artist-name"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
<?php }
} else {
echo 'Artist not found';
}
wp_reset_postdata(); ?>
最佳答案
好的,所以我终于得到了我想要的东西,但我不确定为什么下面的代码有效而我的原始代码没有,因为它们都是执行新查询的类似方法。
如果其他人有同样的问题,这是代码:
<?php
// Permalink for artist
$artist_name = get_field('artist');
global $post;
$posts = get_posts( array( 'post_type' => 'artists', 'meta_value' => $artist_name ) );
if( $posts ):
foreach( $posts as $post ) :
setup_postdata($post); ?>
<p class="artist-name"><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></p>
<?php endforeach;
wp_reset_postdata();
endif; ?>
关于wordpress - WP 查询循环通过在主页上工作但不在搜索页面上的自定义帖子类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22655828/
我是一名优秀的程序员,十分优秀!