我正在建设一个电影院网站,我遇到了一个问题,让我解释一下:
电影-存储在Post的演员-存储在Post类型-persoane(taxonomy=lista)中-存储在Post类型-serial(taxonomy=serial)中
AFC公司(http://www.advancedcustomfields.com/)
如何添加:
我将新演员帖子添加到帖子类型(persoane),添加电影(在帖子中)后,在侧栏(帖子,电影页面)中链接演员:
在我将演员链接到演员页面后,它会显示演员所扮演的电影
我用这个代码来做这件事
<?php
//create new loop query for films by this actor
$movies = $wpdb->get_col("SELECT post_id FROM $wpdb->postmeta WHERE meta_key = \'distributie\' AND meta_value LIKE \'%".get_the_ID()."%\'");
$the_query = new WP_Query( array( \'post__in\' => $movies) );
// The Loop
while ( $the_query->have_posts() ) : $the_query->the_post();
echo \'<div class="actor-box-related"><a class="actor-titlu" href="\';
the_permalink();
echo \'" title="\'.get_the_title().\'">\';
?>
<img class="actor-img" src="/scripts/timthumb.php?src=<?php the_field(\'img\'); ?>&h=90&w=60&zc=1" alt="<?php the_title(); ?>" title="<?php the_title(); ?>"/>
<?php the_title();
echo \'</a></div>\';
endwhile;
// Reset Post Data
wp_reset_postdata();
?>
The problem:
我创建了一个Post-Type-serial,在这里我添加了序列(例如:heroes,prisonbreak…)
如何在演员页面上显示演员所扮演的连续剧。serials的custom\\u字段是“Distribute\\u serial”-我更改了该代码,但没有成功,它不起作用。
up代码只能从post中获取电影,如何从该PostType(序列号)获取电影。
我能把这两个放在一起拍电影和连续剧吗?或者我如何在演员页面上显示连续剧,如果没有电影或连续剧,请检索文本“此演员没有电影”
提前感谢那些帮助我的人。