Are you looking for a way to display multiple instances of a custom field value? While there’s probably a plugin for this, we have created a quick code snippet that you can use to display multiple custom field values in WordPress.
Instructions:
All you have to do is add this code to your theme’s single.php file:
<?php $press_quotes = get_post_meta($post->ID, "pressquote", false); if ($press_quotes[0]=="") { ?> <!-- If there are no custom fields, show nothing --> <?php } else { ?> <div> <h3>From the Press</h3> <?php foreach($press_quotes as $press_quotes) { echo '<blockquote><p>'.$press_quotes.'</p></blockquote>'; } ?> </div> <?php } ?>
Note: If this is your first time adding code snippets in WordPress, then please refer to our guide on how to properly add code snippets in WordPress, so you don’t accidentally break your site.
If you liked this code snippet, please consider checking out our other articles on the site like: 50+ best WooCommerce themes for your online store and how to create a WordPress donation form.
Comments Leave a Reply