Reputation:
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
Reputation: 3629
You can get custom field of post that you created from ACF
plugin:-
$field = get_field($field_name, $post_id, $format_value);
Upvotes: 1