I’m too new to be able to add a comment, but $post_id looks like it’s undefined. You’ll need to set it, one way is to grab it from the global $post
object like so:
add_action('genesis_after_header', 'mbr_after_header');
function mbr_after_header() {
global $post;
if ( is_singular( 'post' ) )
$cf = get_post_meta( $post->ID, 'mbr_customfield', true );
if(empty($cf)) {
echo "Empty Customfield";
} else {
echo "".$cf."";
}
}
Related Posts:
- Displaying Custom Fields on Post with Genesis Child Theme
- get_post_meta not working inside loop
- Unable to show ACF’s Image Custom Field properly in Genesis Framework [closed]
- add_action and remove_action if custom field exists
- author.php not showing content if Author has no Posts
- How can I hide my section title if there is no data in custom fields?
- Query posts by Custom Meta (checkbox) & Genesis Grid Loop
- Meta Query with AND & OR?
- Problem with serialized arrays in custom meta
- explode array within shortcode
- Can I count the number of users matching a value in a multiple value key?
- WP doesn’t show Array Custom Fields?
- How do I search an array stored in a custom-field using WP_Query?
- Custom text-only header
- How to delete custom field “suggestions” from dropdown list
- How to save custom fields for attachments
- How to get a meta value from all post
- Adding existing user custom field value to a woocommerce product [closed]
- How to save values of a custom input field on the Network > Site Info screen
- How to load php file for specific page in admin?
- How to set default metaboxes on user creation?
- Exclude custom post type from search by custom field value?
- ajax jquery update custom field meta value front end
- Add input field to ‘Pages > Edit Page’ through functions.php
- Get multiple custom field values in a $wpdb query [duplicate]
- add meta box using function.php
- How do I exclude posts by custom field value?
- Upcoming Event: How do I sort database by custom date field, but ignore past dates?
- Orderby custom field meta value ASC and then by date DESC
- Sorting posts ordered by custom field value
- query usermeta from custom field
- Creating author profiles with extra fields and exporting that data?
- WP 3.1 meta_query for multiple custom field values
- Better way to save image in custom field
- Changing themes… and need to move Custom Field content into another field
- Filter Posts on Custom Fields and Show them on a new Page
- Removing link ” from ” on meta_value in custom feilds
- Jetpack post types Portfolio or Testimonials support for custom fields?
- Merge Multiple Custom Fields into one New Custom Field for Searching
- How to add a custom field in the advanced menu properties?
- Meta query with multiple custom fields for archives page ordering problem
- filter custom field values $min $max
- Select multiple images from custom field
- Custom Fields – How to create a list from multi-line entries of a single value
- Unique meta_key with array value vs repeated meta_key with single values
- Auto embeding Vimeo/Youtube in custom fields (tinyMCE editor)
- How do I use “if field exists” with $curauth?
- custom field (video/audio url) and embed functionality
- Allow only one post with specific meta value
- Custom metabox not displaying multiselect data in edit mode
- How to validate select field in post meta?
- Querying posts by latitude and longitude to build a Google Maps with several markers
- How to display childrens custom fields?
- Attach images to posts using custom fields (just paths to images already uploaded)
- how to display custom fields of post on a web page
- How to fill custom fields with brackets in their key with add_post_meta()?
- How to use pre_get_posts to alter posts_per_page of category pages, where ‘posts_per_page’ will be dynamic
- Front-End User Profile
- Displaying pages with a specific custom meta
- How to update user profile custom fields
- How to print the Custom fields values [closed]
- How to validation for sanitize_URL?
- How can I output the custom fields wrapping with HTML
- put saved metabox values back into fields and then display on the front end
- How to get custom image field of specific post id
- Custom field to array?
- wp_get_attachment_image_src() with advanced custom fields returning empty
- How to update custom field of a posts in a particular category
- How to query posts by month based on date custom field?
- Change word in woocommerce product category custom field
- get posts based on non-single metadata
- Problem with revisions only returning four results
- Woocommerce products search with custom fields
- Convert author metadata to a custom field
- Add forms dynamically in admin pages?
- Custom pages or Custom Posts
- get_avatar filter is not working as per requirement
- Saving Custom Field that includes Quotation marks
- WordPress Admin – Automatically Sort Custom Posts by Custom Field Date Value in d-m-Y Fomat
- how can i show WordPress custom field data to my short code?
- how to execute custom field for structured data?
- Saving custom form data
- searching by keywords in post’s metas or pagination links problem
- Permanently show Custom Fields in Editor
- open modal window
- select user with all meta field and field value. I am use Below Query for this ,So any of know another way to fast query instead of below query?
- Retrieve Google API JSON data and store as WordPress Custom Fields
- meta_query ‘compare’ => ‘!=’ not working
- If metabox fields has content display content
- Why WordPress takes time to make request to save post?
- Show comon custom field results?
- Display Data From This Custom Media Upload Meta Box?
- Display Child Page with custom fields within Parent Page
- Convert all dates in field to Unix time, except those already in Unix time
- Load code for custom fields only on admin pages?
- Pagination not displaying correct number of pages
- Show div based on custom meta value
- Show/Hide Featured Image or replace it with custom field [closed]
- Conditional display based on ACF checkbox
- How to add an ACF only for parent term?