Support

Account

Home Forums General Issues Location rules not working Reply To: Location rules not working

  • I couldn’t find any duplicate, this is my functions.php file, is anything else weird in there?

    Also I’m experiencing great problems echoing the custom field value into a variable. I am using a Field name of “textbild” Here is the code:
    <div class=”contentCon clearfix”>
    <?php global $post;
    $id = ‘4’; //set the post id here
    $thePost = get_post($id); //get the post
    setup_postdata($thePost); //setup the post
    $textbild = get_post_meta($post->ID,’textbild’, true);
    ?>
    <h2><?php echo get_the_title($ID = ‘4’); ?></h2>
    <div class=”contentText”><?php the_content(); ?></div>
    “/>
    </div>

    I’ve also tried:

    $textbild = the_field($post->ID,’textbild’, true);
    &
    $textbild = get_field($post->ID,’textbild’, true);

    Thanks for your time mate!