我使用ACF(高级自定义字段)插件为新的帖子类型(新闻)创建了两个自定义字段(news\\u source和news\\u link)。我试图使用以下代码在主页上显示标题和两个新字段。它会拉取标题,但不会拉取自定义字段,即使我可以在单曲上看到自定义字段。php页面。我认为我的语法对于第二个echo语句是错误的,因为它没有在段落标记之间返回值。我做错了什么?
<ul>
<?php
$recent_posts = wp_get_recent_posts(array(\'post_type\'=>\'news\'));
foreach( $recent_posts as $recent )
{
echo \'<li><a href="\' . get_permalink($recent["ID"]) . \'" title="Look \'.esc_attr($recent["post_title"]).\'" >\' . $recent["post_title"].\'</a> </li> \';
echo \'<p>\' . get_field($recent["news_source"]) . \'</p>\';
}
?>
</ul>