• Hello,

    I am using this to get all pages with a certain page template

    $pages = get_pages(array(
        'meta_key' => '_wp_page_template',
        'meta_value' => 'template_aboutMembers.php'
    ));
    echo '<pre>';
    print_r($pages);
    echo '</pre>';

    But i don’t see the register_field_group values attached to the template

    Any tips, suggestions?

  • The topic ‘How to get all custom registered fields from a specific page template?’ is closed to new replies.