user3348051
user3348051

Reputation:

How to query a post using advanced custom fields?

Okay, don't know whether a constructive post or not but would be so helpful if someone could help me with this.

I am learning WordPress development and am a total beginner with advanced custom fields.

I have setup a custom field with radio buttons to chose from the post category.,

see,

tech : Tech
news : News
sports : Sports
city : City

So whenever I post something, I can choose the category, but I don't know how to query the post with the WordPress loop,

How can I do this? Any help would be much appreciated. Thank you so much for your time and sorry for my English.

Upvotes: 0

Views: 153

Answers (1)

Akshay Paghdar
Akshay Paghdar

Reputation: 3629

You can get custom field of post that you created from ACF plugin:-

$field = get_field($field_name, $post_id, $format_value);

See Documents here...

Upvotes: 1

Related Questions