Support

Account

Home Forums Add-ons Gallery Field Get gallery fild for user to author.php Reply To: Get gallery fild for user to author.php

  • Hello friends!
    Problem solved …

    <?php
    $image_ids = get_the_author_meta(‘galeria’, false, false);
    $shortcode = ‘
    [gallery ids="' . implode(',', $image_ids) . '"]
    ‘;
    echo do_shortcode( $shortcode );
    ?>

    Thanks! 😉