程序编程后通过功能添加帖子
wp_insert_post()
无法获取acf插件中的数据和字段。 数据在帖子内,字段中可用,但不在客户端。 仅在单击管理部件内的“更新”按钮后才能获得输出。之后,输出数据 填写帖子如下:
$post_data = array(
'post_title' => wp_strip_all_tags($item->name),
'post_content' => "",
'post_status' => 'publish',
'post_date' => date('Y-m-d H:i:s'),
'post_category' => array(3,13,2)
);
$post_id = wp_insert_post( $post_data );
update_field( "link_to_1", $item->image, $post_id );
update_field( "link_to_2", $item->tour, $post_id );
客户方的结论如下:
<img src="<?php the_field('link_to_1');?>"/>
答案 0 :(得分:0)
假设link_to_1正在存储图片网址。
在acf字段中,您已将返回值指定为图像网址。
<img src="<?php the_field('link_to_1');?>"/>