Your question is not very clear, but as I understand you want to place ACF field on your pages. You can edit custom field in Custom Fields, choose desired field group and custom field and simply edit it.
If you want to create new field and place it on your page just use this in function.php
function function_name( $atts ){
$picture_name = get_field( 'field_name' );
return $function_name;
}
add_shortcode( 'your_field', 'function_name' );
And place shortcode [your_field] on page. Or use it directly in template with <?php echo get_field( 'field_name' ); ?>
Related Posts:
- HTML / Javascript in custom field textarea?
- Inserting Schema Markup (JSON-LD) Manually with Custom Fields or any Better Ways?
- HTML for adding a meta box (basic text field) to page editor?
- Modal pop-up HTML code works on other sites or HTML viewers but not in the custom HTML block within a wordpress page?
- WP_Query – Order results by meta value
- Custom query with orderby meta_value of custom field
- Custom post meta field effect on the performance on the post
- Difference between meta keys with _ and without _ [duplicate]
- Orderby meta_value only returns posts that have existing meta_key
- Can I query custom meta data through WP_Query
- Including custom fields in search?
- Add custom objects/entities to WordPress
- Change behavior of “Insert into Post” based on attachment metadata
- Sort posts by custom field numeric value using dropdown
- How to position a custom field before the editor
- How can I display all values of a custom field from posts with a certain value of another custom field or from certain post types?
- Is there a way to do multiple ordering on a multiple meta_query?
- searching in custom meta field
- How to add upload field in a custom taxonomy?
- Display thumbnail from custom field
- Bulk move (or copy) from a custom field to the post content?
- Plugins won’t recognize my plugin’s hidden custom fields
- Store JSON in a custom field
- Getting Custom Field data from a page hierarchy
- Custom contact form 7 select with custom values [closed]
- limit amount of photos uploaded per cpt post
- Problem with adding exta field in metabox in custom post type
- Best way to add custom / magic / flutter fields into RSS feed
- Setting orderby to a custom field using pre_get_posts
- Add WYSIWYG to Image Description field
- How to get multiple checkboxes in one meta field
- Adding Custom Fields to Search
- How to Display Custom Meta Box only on Specific Page IDs
- Get custom field label
- Show ACF fields only on certain page in the backend
- How do I use Ajax to build a dropdown of custom fields based on a post selected in previous dropdown?
- Register rest field for specific user
- Custom Field Suite A little problem
- How make a custom search on backend in WordPress without plugin?
- Create Multiple File Upload Metabox in WordPress
- WP_User_Query pulling ACF to loop
- how to put a custom field value in variable
- get_posts that haven’t been assigned a specific custom field
- How to add the image URL from an external RSS feed and insert into a custom field?
- My custom backend codes shows up when i try to view my website
- Advanced Custom Fields dynamic update_field
- Custom Profile Fields move from BBpress to BuddyPress
- How can I output a list of values for a custom field, and posts with those values?
- Add additional ‘description’ field for defined roles / role metadata?
- I need a “Choose from existing content” popin
- For homepage images (for small business website), is it better to use custom fields or post_thumbnail?
- Passing meta_box string to post__in?
- Can data from a Custom Field data be used by a shortcode on a per page/post basis?
- How can I modify RSS item titles to be either the title or a custom meta field?
- Avoiding ACF get_field and returning to core WordPress function
- Walker class for sub-menu with ACF fields
- Display custom field value part by part?
- WordPress built in custom fields don’t validate or sanitize? Is there a way to fix this?
- How can I hide custom field from users used for caching response from external api?
- How do i get the attached images with custom value checked?
- How to disable Edit Post and Allow only Custom Field?
- Cannot save underscore custom fields in one wordpress installation using xmlrpc and underscores
- Best way to contruct a global custom field?
- Diamond question mark in text after migrating content
- Display posts with empty custom field
- Custom Fields Question
- Add custom data (field) to sidebar widgets for later display
- How do I convert all custom_field php timestamps in the database to js timestamps?
- Create a new custom field for all posts based on current custom field
- Display custom field value as a mailto: link
- Display custom field only if it has a value
- Make separate text boxes for separate WordPress Custom Fields
- Need to search a custom field (ingredients, one long string per post), but want it to allow phrases/non-exact matches
- Sort by an ACF field in a tax_query
- How do I display an article using a WordPress custom field?
- Custom field metabox not showing in back-end
- WordPress admin area: select box with 12.000+ options
- to create a custom post type with additionnal url field such as link to social network and an email field
- Load one page with parent and child pages
- Why can’t I get the correct post permalink
- How to add content with a filter when there’s no content in the editor
- Extra text’n’image field in a page
- Order a query by meta_value and then by post_date
- custom field functionality
- Media Attachment Custom Meta Fields not saving in Media Uploader when using jQuery UI Autocomplete
- How to add an option to admin to add image that could be used as header?
- WordPress archives by custom field and date
- Decouple page name from page title
- Custom Field add markup to line breaks
- Use Metabox to enter Post Title
- Include custom fields into the content of a regular page
- Bypassing a Form Options
- How to query posts that have certain post meta keys, and sort by meta key and/or value
- How to implement jquery-ui autocomplete into custom fields?
- i want to send email on custom post field (job_status == 2) but it is not working
- How to create a searchable database with a single-field search box at the front end? [closed]
- Add custom fields to specific menus
- Truncating characters in Advanced Custom Fields works some places but not others?
- Conditional display based on ACF checkbox
- How to add an ACF only for parent term?