• Hello Community,

    it is possible to insert an acf-field-code in your Shortcode (php)?

    [eal]Amazon Echo Dot[/eal]

    <?php echo do_shortcode("[eal]<?php the_field( 'modell' ); ?>[/eal]"); ?>

    <?php
    echo do_shortcode( '[eal search="<?php the_field( 'modell' ); ?>"]<?php the_field( 'modell' ); ?>[/eal]' );
    ?>
    <?php
    $amazon = get_sub_field( 'modell' );
    echo do_shortcode( '[eal search="' . $amazon . '" ]Test[/eal]' );
    
    ?>
  • The topic ‘acf field in your shortcode’ is closed to new replies.