You’ll have to use add_shortcode
to achieve this. Let’s say that you want this shortcode to be called “my_cf”:
function my_cf_shortcode_callback( $atts ) {
$atts = shortcode_atts( array(
'post_id' => get_the_ID(),
), $atts, 'my_cf' );
return get_post_meta( $atts['post_id'], <FIELD_NAME>, true );
}
add_shortcode( 'my_cf', 'my_cf_shortcode_callback' );
Now you can use it by putting [my_cf]
or [my_cf post_id=POST_ID]
to your posts.
Related Posts:
- Using advanced custom fields from one custom post type in another custom post type / using nested shortcodes
- How to render a custom post type template with custom fields using shortcode
- Add custom attributes to a post
- How to call a post’s metadata in shortcode.php?
- Alike Shortcode using in Custom Shortcode
- Custom Info Box at end of posts?
- Create shortcode for list of custom post titles with custom fields alongside
- Advanced search form with filters for custom taxonomies and custom fields
- Help Creating a Slideshow Custom Post Type with Custom Meta Boxes?
- Search multiple custom fields by using meta_query
- Custom Post Type – Taxonomy Dropdown Menu?
- How do I implement custom fields without using any plugins?
- How I check if the same post slug has not been used before publishing?
- How to sort a table of custom posts by column containing custom field
- Issue with saving custom post type when editor is removed
- order by meta_value serialized array
- convert Custom Fields Option-Values to Tags/Taxonomy
- Custom post metadata not appearing in public API
- Automatically Insert Custom Field on Custom Post Type Publish
- IF statement in a do_shortcode
- Display custom post types with custom date field value (before today) & order by custom date field
- How to have the right design for a custom post type without accessing themes
- Custom Post Type Loop within Shortcode
- Create a post in custom post type using field in registration form after users submit form
- WordPress custom meta field for custom post not storing data
- Conditional regex in add_rewrite_rule() for specific query filters & pagination
- How to Duplicate (multiple meta box)?
- List all images from a single post meta value
- Publish an XML feed from a CPT with ACF fields?
- How to set up multisite for multi language?
- Get custom post type list for every category shortcode
- Creating a Custom Post as a repository for theme constants
- Orderby CPT custom fields not working
- get_post_meta not working on publishing
- Query custom post type with ACF Date
- How to create a custom post type with additional fields?
- Add custom field in comments form
- Order Custom Post Type by Custom Field Value
- Hierarchy and access control for Custom Post Types (CPT)
- Shortcode for CPT post content in a page
- Hierarchical custom fields
- Fields for different parts of a page
- Facebook social publisher and custom post type fields [closed]
- Searching Custom Fields
- Custom Post Meta from custom metaboxes is randomly being deleted
- How to display custom field value on page?
- How to get specific post meta by title or id
- Populate a custom field dropdown with post titles by author
- echo selected value from dropdown
- Category Search / Custom Post Type search on my website. Custom Post Types that are “page-like”?
- Get data from PHP to JavaScript to set position of each post on front page
- Get custom term meta problem on single post type
- Adding Template Post Content
- How to display a WordPress Custom Field only on a specific day of the week?
- Filtering custom posts by custom fields (ACF) [closed]
- Incorrect ordering of custom post type based on time
- How can I see a list of products that I have set to outofstock through a custom field check box?
- Shortcode / WP_Query in post changes context
- Modify a plugin function output from another plugin
- Using Custom Post Meta Values in Shortcode
- delete duplicate meta_value with same post_id
- Save Custom Fields
- Content in WP Editor displayed below CPT shortcode [duplicate]
- Writing a custom Glossary plugin
- Filter search posts by post meta?
- Adding a location field to buddypress activity
- Display Posts that fit a certain criteria on Category pages
- Shortcode with loop stacks output
- Sort custom post column by generated value?
- How to only display all posts to a custom User Role?
- Unable to gather Image URL from Custom Post Type’s; Custom Meta Field
- How to display the post using a shortcode in WordPress?
- How to generate auto shortcode for custom post type same as Elementor Template?
- register_rest_field update_callback don’t work for $_FILES
- How to convert Post Object Custom Field into Tags
- Shortcode and get_template_part
- Custom meta fields not showing up in WP_Response Object via custom endpoint
- Query a Custom Post Type using SELECT that has ACF fields to compare dates
- I want to create a metabox under custom taxonomy
- Sql Update CPT from publish to draft and particular custom field
- Filter custom WP_Query by first letter of a custom field – hopefully using Search and Filter Pro?
- PHP Notice: Unidentified index
- check_admin_referer not working in custom meta box for custom post type
- Enable shortcodes on custom post type
- Custom meta box in editor of custom post type not working
- How to display all custom fields associated with a post type – IN THE ADMIN AREA?
- Shortcode display CPT Query only showing 1 post?
- How do I add custom fields to posts without having to manually add everytime I post?
- Setting a custom $query->query_vars[‘meta_key’] breaks the WordPress menu
- WP_Query and two custom fields returns no posts
- I want to split this into two functions
- Repeatable Custom Field for Media Upload
- How to store datetime from custom meta box so that it can be sorted by
- Custom Post Meta on a Different Page?
- Custom Post type easy way for editors
- Adding a custom field after post title (ex.Example Title [30 Second Read])
- Creating post custom field text area
- querying to custom field over ACF REST API
- WP Query + custom fields: How to query event posts from the current date backwards 6 months and organize it month by month?
- Update Custom Field daily within 7days