D
D
davidb2018-07-15 01:44:48
WordPress
davidb, 2018-07-15 01:44:48

How to display the contents of the Advanced Custom Field layout?

There is a block GzS3CN2QTlaiRhZlqwESpQ.pngand these fields are filled in one of the records, how to display already filled fields through php insert in another record? Thank you.

Answer the question

In order to leave comments, you need to log in

1 answer(s)
N
Nikolay Mironov, 2018-07-15
@solidcreature

Hello, to display the value of the acf field from another post, you need to specify the post id:

//get_field() — возвращает значение поля
$param = get_field('field_name',$post_id);

//the_field() — выводит значение поля в html
the_field('field_name',$post_id);

But the name of your block confuses me, something is wrong here

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question