custom fields wordpress code example
Example 1: custom fields wordpress
/* Wordpress for custom field -------
create template file like home.php and add this code */
<?php echo get_field('name');?>
Example 2: How to display custom field in wordpress?
echo get_post_meta($post->ID, 'keyName', true);
Example 3: wordpress search in custom fields
So, I did another search today and this was worked first time. http://adambalee.com/search-wordpress-by-custom-fields-without-a-plugin/