user52463
0
Q:

get custom field

/* put this code in home.php file create in child theme  */

<?php 
 /*Template Name: Home Template*/
 
echo get_post_meta($post->ID, 'Name', true); 
  
?>
 /* Or use this code  */
 <?php 
	$value =get_field('Name');
	echo $value;
?>
1
$value = get_field( "text_field" );

if( $value ) {
    echo $value;
} else {
    echo 'empty';
}
0
echo '<pre>';
print_r(get_post_custom($post_id));
echo '</pre>';
0

New to Communities?

Join the community