The easiest way would be to add a simple conditional:
$values = get_post_custom_values("listing_heading_10");
if ( $values ) { ?>
<h3 class="listing-title"><?php echo $values[0]; ?></h3>
<?php }
That said, is there any reason that you can’t put your output code in a foreach
loop?
e.g.
$values = get_post_custom_values( 'some_value' );
foreach ( $values as $value ) {
// echo output content here
}
It may be helpful to put your custom meta values into an array, to facilitate looping through them if they exist. So, instead of:
$values = get_post_custom_values("listing_heading_10")
…you could have:
$values get_post_custom_values( 'listing_heading' )
And instead of
$values
…you could output:
$values[10]
etc.
Related Posts:
- ORDER BY custom field value
- Best way to programmatically remove a category/term from a post
- Using wordpress post data as input for google visualisations
- display specific custom fields
- Add new “Insert Into Post” button with another function
- Multiple meta values for same meta_key adding on “Preview Changes” hit but not on saving or updating post
- Order posts by custom field and if custom field is empty return remaining posts
- Can serialized arrays in DB be matched against serialized arrays with meta_query?
- Create a select drop down of available menus
- Best way to allow manageable social media URLS?
- Adding a prefix to a post title
- copy attachments to another post type and change attachment url
- Cannot edit post meta fields with rest API
- Only display custom field if it there is a value inside
- Slow meta query with multi meta keys
- Custom Field Multiple Clauses
- Add a post meta key and value only if it does not exist on the post
- Custom field values repeating
- Adding a custom field or metabox to the post-thumbnail widget?
- My metabox class
- Loading scripts to the Post Edit page only
- Registration and Profile custom field
- Per site configuration
- Alternative to simple fields plugin?
- Calling custom fields for pages (not posts)
- Add More Fields to Users Pages (Admin Panel)
- how can i use custom field in query post
- wp_editor not saving data, and text area showing html tags
- Get specific custom field keys from a post and put into an array
- Importing from XML is ignoring serialized custom field
- Dynamically fill a post custom field with post publish date
- Select multiple options in WordPress custom meta filed
- get_terms that have custom sticky field checked
- Users Select inside custom metabox
- filtering custom post types via meta data drop down
- Get content from pages with same meta_key from Database
- How to add an extra field in a post and show it on the template
- Exclude images uploaded via meta boxes from WordPress gallery
- Speed up / Optimize Admin Edit Post Page on Large Websites (50-150k posts, 50 custom fields per post)
- Why is my Custom Meta Box Field Inputs NOT saving?
- Filter multiple custom fields Values with Check boxes
- Get registered custom fields or post meta even if empty
- Pass current post title to a predefined link
- Migrating old posts to new wp, how to extrapolate infos from the post body to custom fields?
- How to mass update custom fields for more than 20k posts
- remove initial wysiwyg editor from cms page edit
- shortcode in a custom metabox
- Build index page from custom fields
- Importing WordPress Posts With Custom Meta Data As CSV Files Through PHPMyAdmin
- How can php be used to return data from custom fields in a post?
- Modify date query by URL parameter using pre_get_posts and $_GET
- Save attachment ID instead of URL in custom field
- The best way to collision check in WP
- Get meta field value of all catgories
- Displaying a custom field containing a list creates unwanted markup
- Output custom field as ul list
- Multiple Custom Field Query
- Change Page Order by Custom Field (Magic Fields)
- Custom Field is getting the value of another page/post instead of the current one?
- Custom Field Date Problem
- Approach to creating a site with this structure
- ACF field group not showing in page
- Filter post style attribute
- Update some (not all) post titles with custom field values before running the Loop
- how to turn a link field into a button or link text
- Arrays in custom fields or is there a better way?
- Use value from ACF to populate other fields
- Dynamically populate query source in Elementor post widget
- Setting user permissions per post
- Adding Facebook’s image and meta description retrieval capabilities to a WordPress post
- Weird custom fields data lost
- Why does my numeric meta query work only on one meta key and not the other?
- WooCommerce 3 get custom variation on process order [closed]
- query_posts -> get page_id from custom field
- author global display format
- Output Custom Field value to shortcode
- Update custom table on metabox POST
- display custom media folders to wordpress media popup
- Should I store arrays in custom fields or create custom tables?
- Problem saving meta data
- Term specific featured post on taxonomy archive pages
- change attachment custom field onChange event
- Custom Meta Boxes and Fields for WordPress: Change directory upload based on user-edit page
- WP_query returns error when used for custom widget
- Saving metadata of related post on save_post
- Custom field value link title
- How to Order Posts by Custom Fields?
- Get custom field from other post in carousel
- Form fields based on custom fields
- show custom field content in jquery tabs
- Create citation and url in post using 3 custom fields with conditions for each field… So close!
- Post rating using Custom Field
- Inserting custom fields into new-post.php without using the Custom Fields Template plugin?
- woocommerce how in checkout to add my custom field check box, and when i check it hide the shipping adress and add tax 19% [closed]
- How can I attach files without using a plugin?
- Advanced Custom Fields for Header that are Editable from a Page [closed]
- Show only first image of multiple image field
- Change Fields of Comments and make them searchable?
- Shortcode not picking up custom field
- Custom Fields after update to WordPress 6