• Resolved jordiwordpress

    (@jordiwordpress)


    I’m creating a form for my CPT ‘edition’ within the template of my CPT ‘book’. In this form, I have an input field related to the CPT ‘photographer’. This related field has a counterpart in the other custom post type, and they should have the same related posts, i.e., the same content. I want the input in the CPT “edition” form to automatically display all related posts of the CPT “libro”. The code works, but it only registers one of the related posts. How should I modify it to display all related posts?

    Thanks

    <?php?
    
    // Obtén el ID del post actual
    
    $post_id = get_the_ID();
    
    ?
    ?
    // Obtén los fotógrafos seleccionados en el campo "sobre_fotografo" del post actual
    
    $fotografos_seleccionados = get_post_meta($post_id, 'sobre_fotografo', true);
    
    
    // Verifica si hay fotógrafos seleccionados
    
    if (!empty($fotografos_seleccionados)) {
    
    // Obtiene el primer fotógrafo (principal)
    
        $fotografo_principal_id = reset($fotografos_seleccionados);
    
    // Obtén el nombre del fotógrafo principal usando el ID
    
        $fotografo_principal_name = get_the_title($fotografo_principal_id);
    
    // Muestra el nombre del fotógrafo principal en el label
    
        echo 'Fotógrafo Principal: ' . esc_html($fotografo_principal_name);
    
    // Agrega un input para mostrar el valor del fotógrafo principal
    
        echo '<input type="text" name="edicion_fotografo_principal" value="' . esc_attr($fotografo_principal_name) . '" readonly>';
    
    } else {
    
    // Si no hay fotógrafos seleccionados, muestra un input vacío
    
        echo '<input type="text" name="edicion_fotografo_principal" value="" readonly>';
    }
    
    ?>          
Viewing 3 replies - 1 through 3 (of 3 total)
Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Fill automatically content of the related field to anotger related field’ is closed to new replies.