我有一个页面,我从循环之外的另一篇文章中提取内容。
我已成功获取指定帖子的内容,但无法从自定义字段(高级自定义图像字段)获取图像。
这是为了从帖子中获取内容,帖子的ID是299:
$my_id = 299;
$post_id_299 = get_post($my_id);
$content_299 = $post_id_299->post_content;
$content_299 = apply_filters(\'the_content\', $content_299);
$content_299 = str_replace(\']]>\', \']]>\', $content_299);
$content_299_chars = 238;
$modcontent_299 = substr($content_299, 0, $content_299_chars);
<p><?php echo $modcontent_299; ?></p>
这是我想要从帖子中获得的图像,其ID为299(如果存在):
$attachment_id = get_field(\'image\', 299);
$size = \'full\';
$image = wp_get_attachment_image_src( $attachment_id, $size );
if( get_field(\'image\') ):
echo \'<img src="\' . $image[0] . \'" alt="\' . the_title() .\'" width="238" height="158" />\';
endif;
我确信我需要更改其中一些变量,以从特定的帖子id获取图像字段,这与获取内容的方式类似,但我对如何为自定义字段执行此操作感到困惑。。。