• Working in a one-page homepage at the moment:
    http://an-ste.com/

    Having problem to get the meta (CUSTOM FIELDS) showcased on my main page. Inside the CV part I am trying to get the Custom Fields to be seen.

    Tried to implement some googled solutions into the loop $content without any success.

    <div id=”cv-container” class=”group”>
    <div class=”cv-field”>

    <h3>
    <?php $ptitle = get_the_title( 15 ); ?>
    <?php echo $ptitle; ?>
    </h3>

    <?php
    $post_id = 15;
    $queried_post = get_post($post_id);
    $content = $queried_post->post_content;
    $content = apply_filters(‘the_content’, $content);
    $content = str_replace(‘]]>’, ‘]]>’, $content);
    echo $content;
    ?>
    </div>

    </div> <!– #cv-container –>

The topic ‘the_meta inside $content ?’ is closed to new replies.