我已经研究这个问题一段时间了,没有找到解决方案。首先,很抱歉我的拼写错误。我是PHP新手,所以请保持绅士风度。
Im使用此列表列出一些自定义字段:
<?php
$my_query = new WP_Query(array(
\'post_type\'=>\'post\',
\'posts_per_page\'=>\'1\'
));
while ($my_query->have_posts())
{
$my_query->the_post();
$emne = get_field( "emne" );
$titel = get_field( "titel" );
$forfatter = get_field( "forfatter" );
$billede = get_field( "billede" );
$land = get_field( "om_foredragsholder" );
{ ?>
<a href="<?php the_permalink(); ?>" style="cursor:pointer;">
<div class="content-holder-whitebox">
<div class="whitebox">
<div class="left">
<h2><?php echo $emne ?></h2>
<div class="title">"<?php echo $titel ?>"</div>
<div class="navn"><?php echo $forfatter ?></div>
<div class="mere-info">Mere info</div>
</div>
<div class="right">
<div class="billede">
<img src="<?php echo $billede ?>" />
</div>
<div class="knap">
<img src="<?php bloginfo(\'template_directory\'); ?>/images/booknu.jpg" />
</div>
</div>
</div>
</div>
</a>
<?php
}
}
?>
拜托,有人能帮我工作吗?我已经安装了插件WP PageNavi。
非常感谢你。