Orignal Code
// This line will print only the URL
echo $product->img->first()->url;
// but this will print the img tag with the URL. Browser will show the image
<img src="<?php echo $product->thumb->first()->url; ?>">
我想添加此代码以显示ACF图片字段并将其替换为标题
Intent intent = new Intent();
...
PendingIntent pendingIntent = PendingIntent.getActivity(<your context>, 0, intent, PendingIntent.FLAG_ONE_SHOT);
AlarmManager mgr = (AlarmManager) context.getSystemService(Context.ALARM_SERVICE);
mgr.set(AlarmManager.RTC, <your delay>, pendingIntent);
我的自定义图片字段名称 shortlinestory 在小部件中我想显示最近的图片请帮助我谢谢
答案 0 :(得分:0)
要获取窗口小部件的自定义字段,您必须在get_field()
函数中添加其他参数。高级自定义字段有相当不错的文档,并解释here如何做到这一点。
首先,您必须弄清楚小部件的ID。这将传递给创建小部件的函数,例如$widget_id = $args['widget_id']
。然后,您可以使用the_field('field_name', 'widget_' . $widget_id)
获取自定义字段值。
希望能帮到你,祝你好运!